Add compile command to each testcase
[gcc-vect-testsuite.git] / vect-34.c
blobdf18f774e5dc163f17ca148309da4c2f5f453dd3
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 16
8 struct {
9 char ca[N];
10 } s;
11 char cb[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45};
13 __attribute__ ((noinline))
14 int main1 ()
16 int i;
18 for (i = 0; i < N; i++)
20 s.ca[i] = cb[i];
23 /* check results: */
24 for (i = 0; i < N; i++)
26 if (s.ca[i] != cb[i])
27 abort ();
30 return 0;
33 int main (void)
35 check_vect ();
37 return main1 ();
40 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
41 /* { dg-final { cleanup-tree-dump "vect" } } */