Add new test to verify that the array index, limit, and stride are
[official-gcc.git] / gcc / testsuite / gcc.dg / pr50763.c
blob60025e30a278da1c058c758bee139e8c9f549563
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-tree-dominator-opts -fdump-tree-pre" } */
4 int bar (int i);
6 void
7 foo (int c, int d)
9 if (bar (c))
10 bar (c);
11 d = 33;
12 while (c == d);
15 /* { dg-final { scan-tree-dump-times "== 33" 1 "pre"} } */
16 /* { dg-final { cleanup-tree-dump "pre" } } */