PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pred-1.c
blob97e3cb78198bf6514207648ea4b62e07868a5c3f
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-profile_estimate" } */
3 int a[100];
4 void foo(int);
5 int
6 main()
8 int i;
9 for (i=0;i<100;i++)
11 if (a[i])
12 continue;
13 foo(i);
16 // { dg-final { scan-tree-dump "continue heuristics" "profile_estimate" } }