blob: 0a3d2029c9fb68f9e403deb4b626b9e3a0b2dba1 [file] [log] [blame]
/* { dg-require-effective-target vect_long } */
#include "tree-vect.h"
int
main (void)
{
int i;
long x[12] __attribute__((aligned(16)));
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" } } */