This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / testsuite / gcc.dg / pr15784-3.c
blobee90760fcb0cf818fa9e0d1d5ef419e7526a3b80
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-tree-generic" } */
3 /* Test for folding abs(x) where appropriate. */
4 #define abs(x) x > 0 ? x : -x
5 extern double fabs (double);
7 int a (float x) {
8 return fabs(x) >= 0.0;
11 /* { dg-final { scan-tree-dump-times "ABS_EXPR" 1 "generic" } } */