2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / mips / neg-abs-2.c
blob67125f78a67171d04275d4399cd7c97e2e3335d3
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" } } */
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); }