aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vect/pr36493.c
blob: 98517dfc5cec304b54bc9ff0c1561b079b2b95fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* { dg-require-effective-target vect_long } */

#include "tree-vect.h"

int
main (void)
{
  int i;
  long x[12] __attribute__((aligned(__BIGGEST_ALIGNMENT__)));

  check_vect ();

  x[0] = 1;
  for (i = 0; i < 12; i++)
    x[i] = i;

  if (x[0] != 0)
    abort ();

  return 0;
}

/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect"  } } */
/* { dg-final { cleanup-tree-dump "vect" } } */