testsuite: Revert to the original version of pr100056.c
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr93767.c
blob5f95d7bd35b267d987be1cd9d41c8b5687200484
1 int
2 main ()
4 int a[10], b;
5 for (b = 6; b >= 3; b--)
7 a[b] = 1;
8 a[b + 2] = a[3];
10 if (a[5] != 1)
11 __builtin_abort ();
12 return 0;