PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-32-big-array.c
blob3e1403bbe96948188e7544d05f183a271828640f
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 128
8 __attribute__ ((noinline))
9 int main1 ()
11 struct {
12 char ca[N];
13 } s;
14 int i;
16 for (i = 0; i < N; i++)
18 s.ca[i] = 5;
21 /* check results: */
22 for (i = 0; i < N; i++)
24 if (s.ca[i] != 5)
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" { xfail { ! vect_align_stack_vars } } } } */