PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / forwprop-32.c
blobc1cef3ac9fc88c5d82967ab6d9430693de1f7902
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-forwprop1 -fdump-tree-ccp1" } */
4 int foo (int x)
6 int tem = x / 3;
7 return tem / 5;
9 int bar (int x)
11 int tem = x / 3;
12 return tem / (__INT_MAX__ / 2);
15 /* { dg-final { scan-tree-dump "x_.\\(D\\) / 15" "forwprop1" } } */
16 /* { dg-final { scan-tree-dump "return 0;" "ccp1" } } */