OSDN Git Service

* gcc.dg/dfp/func-array.c: Support -DDBG to report individual failures.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr15784-3.c
1 /* { dg-do compile } */
2 /* SH4 without -mieee defaults to -ffinite-math-only.  */
3 /* { dg-options "-fdump-tree-gimple -fno-finite-math-only" } */
4 /* Test for folding abs(x) where appropriate.  */
5 #define abs(x) x > 0 ? x : -x
6 extern double fabs (double);
7
8 int a (float x) {
9         return fabs(x) >= 0.0;
10 }
11
12 /* { dg-final { scan-tree-dump-times "ABS_EXPR" 1 "gimple" } } */
13 /* { dg-final { cleanup-tree-dump "gimple" } } */