1 2 3 4 5 6 7 8 9 10
/* PR tree-optimization/81003 */ unsigned int a, b; void foo (void) { for (b = 0; b < 13; b += 2) a &= !!b; }