PR target/55146
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-2.c
blobf01b7b46ddc6c9c11df4a5108d9d72af20659def
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 16
8 char cb[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45};
9 char ca[N] = {};
11 __attribute__ ((noinline))
12 int main1 ()
14 int i;
16 for (i = 0; i < N; i++)
18 ca[i] = cb[i];
21 /* check results: */
22 for (i = 0; i < N; i++)
24 if (ca[i] != cb[i])
25 abort ();
28 return 0;
31 int main (void)
33 check_vect ();
35 return main1 ();
38 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
39 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 0 "vect" } } */
40 /* { dg-final { cleanup-tree-dump "vect" } } */