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