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
6extern double fabs (double);
7
8int 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" } } */
14