aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vect/pr93767.c
blob: 5f95d7bd35b267d987be1cd9d41c8b5687200484 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
int
main ()
{
  int a[10], b;
  for (b = 6; b >= 3; b--)
    {
      a[b] = 1;
      a[b + 2] = a[3];
    }
  if (a[5] != 1)
    __builtin_abort ();
  return 0;
}