1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* PR opt/13159 -- test unswitching a loop multiple times. */ void foo (void) { long j, k, p, g; while (p) { while (k < 0 && j < 0) ; if (g) ; else if (g) ; } }