PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / pr55152.c
blobb1a72cb5a2921501ddeb4645d3c744b8885a133f
1 /* { dg-do compile } */
2 /* { dg-options "-O -ffinite-math-only -fno-signed-zeros -fstrict-overflow -fdump-tree-optimized" } */
4 double g (double a)
6 return (a>=-a)?a:-a;
8 int f(int a)
10 return (a>=-a)?a:-a;
13 /* { dg-final { scan-tree-dump-times "ABS_EXPR" 2 "optimized" } } */