blob: cd3574214888e45e14af76fe58df38dd35d062a1 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-fdump-tree-generic -ffast-math" } */
/* Test for folding abs(x) where appropriate. */
#define abs(x) x > 0 ? x : -x
extern double fabs (double);
int a (float x) {
return fabs(x) >= 0.0;
}
/* { dg-final { scan-tree-dump-times "ABS_EXPR" 0 "generic" } } */