IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / fold-abs-4.c
blob8bf02a808b08cd516776601340f5fdd1ad5041b3
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-tree-gimple -fwrapv" } */
3 extern float fabsf (float);
4 extern float cabsf (_Complex float);
6 int f (float a) {
7 return fabsf(a) < 0.0;
10 int g (_Complex float a) {
11 return cabsf (a) < 0.0;
14 /* { dg-final { scan-tree-dump-times "ABS" 0 "gimple" } } */
15 /* { dg-final { cleanup-tree-dump "gimple" } } */