PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / 387-10.c
blob0ff1b2a7c7cd8d0cf807bd306dcc9217ed8f1b92
1 /* PR tree-optimization/24964 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -mfpmath=387 -mfancy-math-387" } */
5 double fabs(double x);
7 double test1(double x)
9 double t = fabs(x);
10 return t*t;
13 double test2(double x)
15 double t = -x;
16 return t*t;
19 /* { dg-final { scan-assembler-not "fchs" } } */
20 /* { dg-final { scan-assembler-not "fabs" } } */