Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / pr15784-3.c
bloba8bdc552cde26211ec56025591ed150b5f53c14c
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);
8 int a (float x) {
9 return fabs(x) >= 0.0;
12 /* { dg-final { scan-tree-dump-times "ABS_EXPR" 1 "gimple" } } */
13 /* { dg-final { cleanup-tree-dump "gimple" } } */