Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-27.c
blob4a2da227e3c5804f2273a2680fe733c3753cfaca
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 128
8 /* unaligned load. */
10 int ia[N];
11 int ib[N+1];
13 __attribute__ ((noinline))
14 int main1 ()
16 int i;
18 for (i=0; i <= N; i++)
20 ib[i] = i;
23 for (i = 1; i <= N; i++)
25 ia[i-1] = ib[i];
28 /* check results: */
29 for (i = 1; i <= N; i++)
31 if (ia[i-1] != ib[i])
32 abort ();
35 return 0;
38 int main (void)
40 check_vect ();
42 return main1 ();
45 /* The initialization induction loop (with aligned access) is also vectorized. */
46 /* { dg-final { scan-tree-dump-times "vectorized 2 loops" 1 "vect" { xfail vect_no_align } } } */
47 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target vect_no_align } } } */
48 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 1 "vect" { xfail vect_no_align } } } */
49 /* { dg-final { scan-tree-dump-times "Alignment of access forced using peeling" 0 "vect" } } */
50 /* { dg-final { cleanup-tree-dump "vect" } } */