Skip to content
Snippets Groups Projects
Commit fbd74ce0 authored by dalej's avatar dalej
Browse files

2005-07-10 Dale Johannesen <dalej@apple.com>

	* gcc.target/i386/compress-float-sse.c:  New.
	* gcc.target/i386/compress-float-sse-pic.c:  New.
	* gcc.target/i386/compress-float-387.c:  New.
	* gcc.target/i386/compress-float-387-pic.c:  New.
	* gcc.dg/compress-float-ppc.c:  New.
	* gcc.dg/compress-float-ppc-pic.c:  New.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101939 138bc75d-0d04-0410-961f-82ee72b054a4
parent 8b1bf1e9
No related branches found
No related tags found
No related merge requests found
2005-07-12 Dale Johannesen <dalej@apple.com>
* gcc.target/i386/compress-float-sse.c: New.
* gcc.target/i386/compress-float-sse-pic.c: New.
* gcc.target/i386/compress-float-387.c: New.
* gcc.target/i386/compress-float-387-pic.c: New.
* gcc.dg/compress-float-ppc.c: New.
* gcc.dg/compress-float-ppc-pic.c: New.
2005-07-11 Thomas Koenig <Thomas.Koenig@online.de>
 
gfortran.dg/dev_null.f90: Remove targets.
......
/* { dg-do compile { target powerpc*-*-* } } */
/* { dg-options "-O2 -fpic" } */
double foo (double x) {
return x + 1.75;
}
/* { dg-final { scan-assembler "lfs" } } */
/* { dg-do compile { target powerpc*-*-* } } */
/* { dg-options "-O2" } */
double foo (double x) {
return x + 1.75;
}
/* { dg-final { scan-assembler "lfs" } } */
/* { dg-do compile { target i?86*-*-* } } */
/* { dg-options "-O2 -march=pentium4 -mtune=prescott -mfpmath=387 -fpic" } */
double foo (double x) {
return x + 1.75;
}
/* { dg-final { scan-assembler "flds" } } */
/* { dg-do compile { target i?86*-*-* } } */
/* { dg-options "-O2 -march=pentium4 -mtune=prescott -mfpmath=387" } */
double foo (double x) {
return x + 1.75;
}
/* { dg-final { scan-assembler "flds" } } */
/* { dg-do compile { target i?86*-*-* } } */
/* { dg-options "-O2 -march=pentium4 -mtune=prescott -mfpmath=sse -fpic" } */
double foo (double x) {
return x + 1.75;
}
/* { dg-final { scan-assembler "movsd" } } */
/* { dg-do compile { target i?86*-*-* } } */
/* { dg-options "-O2 -march=pentium4 -mtune=prescott -mfpmath=sse" } */
double foo (double x) {
return x + 1.75;
}
/* { dg-final { scan-assembler "movsd" } } */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment