aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vect/pr86927.c
blob: 794092bc4e4ec193be4a2bf5d996b835789910f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "tree-vect.h"

int a[28];
int main()
{
  check_vect ();
  a[4] = 1;
  int c = 1;
  for (int b = 0; b < 8; b++)
    if (a[b])
      c = 0;
  if (c)
    abort();
  return 0;
}