(root)/
gcc-13.2.0/
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" } } */