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