Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr104543.c
blob48963514f77cbfe645255127de1f9c67a0b0f5ec
1 /* { dg-do run } */
2 /* { dg-additional-options "-floop-unroll-and-jam" } */
4 int a[3], b, c;
5 static int e()
7 if (!c) {
8 for (b = 0; b < 3; b++)
9 for (c = 0; c < 3; c++)
10 a[c] ^= 1;
11 return -1;
13 return 0;
15 int main()
17 e();
18 if (a[1] != 1)
19 __builtin_abort();
20 return 0;