PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / cmpdiv.c
blob14161f5ea6fe0d8634dbbb5292807f123a45464f
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized-raw" } */
4 _Bool f1(unsigned x, unsigned y)
6 unsigned t1 = x / y;
7 _Bool t2 = (t1 != 0);
8 return t2;
11 _Bool f2(unsigned x, unsigned y)
13 unsigned t1 = x / y;
14 _Bool t2 = (t1 == 0);
15 return t2;
18 /* { dg-final { scan-tree-dump-not "trunc_div_expr" "optimized" } } */