Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.target / i386 / 387-5.c
blobfd3106e02704f9220d11facc8b04432996cd43f8
1 /* Verify that -mno-fancy-math-387 works. */
2 /* { dg-do compile { target i?86-*-* x86_64-*-* } } */
3 /* { dg-require-effective-target ilp32 } */
4 /* { dg-options "-O -ffast-math -mfpmath=387 -mno-fancy-math-387 -march=i386" } */
5 /* { dg-final { scan-assembler "call\t_?atan" } } */
6 /* { dg-final { scan-assembler "call\t_?log1p" } } */
7 /* { dg-final { scan-assembler "call\t_?drem" } } */
9 double f1(double x) { return __builtin_atan(x); }
10 double f2(double x) { return __builtin_log1p(x); }
11 double f3(double x, double y) { return __builtin_drem(x,y); }