1 2 3 4 5 6 7 8 9 10 11 12 13 14
// { dg-do compile } // { dg-options "-O2" } static int c = 0; int main() { int b = 0; if (c) { for (;; b--) do b++; while (b); } }