Add new test to verify that the array index, limit, and stride are
[official-gcc.git] / gcc / testsuite / gcc.dg / pr55191.c
blob568425ce038e90142d7e1ceae8c860f6d34c694c
1 /* PR tree-optimization/55191 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2" } */
5 int a, b;
7 void f(void)
9 b = a || b;
11 for(a = 0; a < 2; a++);
12 while(1);