1 /* { dg-require-effective-target int32plus } */
2 /* PR tree-optimization/55955 */
3 
4 int b;
5 
6 void
foo(int x)7 foo (int x)
8 {
9   int a;
10   for (a = x; a < 2; a++)
11     for (b = 0; b < 2; b++)
12       *(unsigned short *) 0x100000UL %= 46;
13 }
14