PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / pr55152-2.c
blob54db0f2062da105a829d6690ac8ed9891fe2b588
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" } } */