Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.target / i386 / 387-7.c
blobedcdac1ae3f5e7036608b1589f7cf933e177c8db
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" } } */
7 extern double sin (double);
8 extern double cos (double);
10 double f1(double x)
12 return sin(x) + cos (x);