LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / wrapv-vect-7.c
blobc4d2de1a64e2ebc151c4ade2327c8fceb7ba04e4
1 /* { dg-require-effective-target vect_int } */
2 /* { dg-add-options bind_pic_locally } */
4 #include <stdarg.h>
5 #include "tree-vect.h"
7 #define N 128
9 short sa[N];
10 short sb[N];
12 int main1 ()
14 int i;
16 for (i = 0; i < N; i++)
18 sb[i] = 5;
21 /* check results: */
22 for (i = 0; i < N; i++)
24 if (sb[i] != 5)
25 abort ();
28 for (i = 0; i < N; i++)
30 sa[i] = sb[i] + (short)100;
33 /* check results: */
34 for (i = 0; i < N; i++)
36 if (sa[i] != 105)
37 abort ();
40 return 0;
43 int main (void)
45 check_vect ();
47 return main1 ();
50 /* Fails for 32-bit targets that don't vectorize PLUS. */
51 /* { dg-final { scan-tree-dump-times "vectorized 2 loops" 1 "vect" } } */
52 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 0 "vect" } } */