blob: fef96239aa0ef4e5f4b340c2002681ea9a73c69b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* { dg-do compile } */
/* { dg-additional-options "-fno-tree-dce -Ofast" } */
long int x1;
int fr;
int
us (int sk, int jx)
{
while (sk < 1)
{
jx *= 2;
fr += x1 + 1;
++sk;
}
return jx;
}
|