* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr71295.c
blobd2ec852fd08b307da50bfd993a6c43d42f303037
1 extern void fn2 (long long);
2 int a;
4 void
5 fn1 ()
7 long long b[3];
8 a = 0;
9 for (; a < 3; a++)
10 b[a] = 1;
11 fn2 (b[1]);