* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr67109.c
blob46df1bfa54f3a62625a79f7834a88ebbf58b0ace
1 /* { dg-do compile } */
2 /* { dg-additional-options "-Wno-aggressive-loop-optimizations" } */
4 unsigned int a;
5 int b[1], c, d;
7 void
8 fn1 ()
10 for (; d;)
12 a = c = 0;
13 for (; c < 5; c++)
15 b[a] ^= 1;
16 a--;