1 /* PR target/93174 */
2 
3 unsigned long long a[2];
4 void bar (void);
5 
6 void
foo(int c)7 foo (int c)
8 {
9   int e = c >> 2;
10   a[0] += c;
11   a[1] = a[0] < c;
12   while (e--)
13     bar ();
14 }
15