OSDN Git Service

* gcc.target/i386/20000609-1.c, gcc.target/i386/20000614-1.c,
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / 387-7.c
1 /* Verify that 387 fsincos instruction is generated.  */
2 /* { dg-do compile { target i?86-*-* x86_64-*-* } } */
3 /* { dg-require-effective-target ilp32 } */
4 /* { dg-options "-O -ffast-math -march=i686" } */
5 /* { dg-final { scan-assembler "fsincos" } } */
6
7 extern double sin (double);
8 extern double cos (double);
9
10 double f1(double x)
11 {
12   return sin(x) + cos (x);
13 }
14