Add new test to verify that the array index, limit, and stride are
[official-gcc.git] / gcc / testsuite / gcc.dg / pr55122.c
bloba290ae001a5b5f71c40bfc8ffb46ca7ef75eed3c
1 /* PR rtl-optimization/55122 */
2 /* { dg-do compile } */
3 /* { dg-options "-O3" } */
5 int i, a;
6 unsigned long long b;
8 void f(void)
10 for(i = 0; i < 15; i++)
11 b *= b;
13 b *= a ? 0 : b;