1 /* { dg-do compile } */
2 /* { dg-additional-options "-O3" } */
3
4 int func_4(int t, int b)
5 {
6 for (int tt1 = 0; tt1 < 128 ; tt1 ++)
7 {
8 for (int tt = 0; tt < 128; tt ++)
9 if (b)
10 t |= 3;
11 t |= 3;
12 }
13 return t;
14 }