OSDN Git Service

gcc/testsuite/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / mips / neg-abs-2.c
1 /* Make sure that we avoid abs.fmt and neg.fmt when the signs of NaNs
2    matter.  */
3 /* { dg-do compile } */
4 /* { dg-options "-O2 -mhard-float -fno-finite-math-only" } */
5 /* { dg-final { scan-assembler-not "neg.s" } } */
6 /* { dg-final { scan-assembler-not "neg.d" } } */
7 /* { dg-final { scan-assembler-not "abs.s" } } */
8 /* { dg-final { scan-assembler-not "abs.d" } } */
9
10 float f1 (float f) { return -f; }
11 float f2 (float f) { return __builtin_fabsf (f); }
12 double d1 (double d) { return -d; }
13 double d2 (double d) { return __builtin_fabs (d); }