Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / tree-ssa / gen-vect-28.c
blob4f3bcf843753b1fdce2cbd7d6268887f1845add0
1 /* { dg-do run { target vect_cmdline_needed } } */
2 /* { dg-options "-O2 -ftree-vectorize -ftree-vectorizer-verbose=3 -fdump-tree-vect-stats" } */
4 #include <stdlib.h>
6 #define N 128
7 #define OFF 3
9 /* unaligned store. */
11 int main (int off)
13 int i;
14 char ia[N+OFF];
16 for (i = 0; i < N; i++)
18 ia[i+off] = 5;
21 /* check results: */
22 for (i = 0; i < N; i++)
24 if (ia[i+off] != 5)
25 abort ();
28 return 0;
32 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
33 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 0 "vect" } } */
34 /* { dg-final { scan-tree-dump-times "Alignment of access forced using peeling" 1 "vect" } } */
35 /* { dg-final { cleanup-tree-dump "vect" } } */