c++: wrong error due to std::initializer_list opt [PR116476]
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-76.c
blob2f6faaf7eab867a57824899f9aca4cd9d238a2b1
1 /* { dg-require-effective-target vect_int } */
2 /* { dg-additional-options "-fdump-tree-optimized-details-blocks" } */
4 #include <stdarg.h>
5 #include "tree-vect.h"
7 #define N 24
8 #define OFF 4
10 /* Check handling of accesses for which the "initial condition" -
11 the expression that represents the first location accessed - is
12 more involved than just an ssa_name. */
14 int ib[N+OFF] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__))) = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10};
15 int ic[N+OFF] = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10};
17 __attribute__ ((noinline))
18 int main1 (int *pib)
20 int i;
21 int ia[N+OFF];
23 for (i = OFF; i < N; i++)
25 ia[i] = pib[i - OFF];
29 /* check results: */
30 #pragma GCC novector
31 for (i = OFF; i < N; i++)
33 if (ia[i] != pib[i - OFF])
34 abort ();
37 for (i = 0; i < N; i++)
39 ia[i] = pib[i - OFF];
43 /* check results: */
44 #pragma GCC novector
45 for (i = 0; i < N; i++)
47 if (ia[i] != pib[i - OFF])
48 abort ();
51 for (i = OFF; i < N; i++)
53 ia[i] = ic[i - OFF];
57 /* check results: */
58 #pragma GCC novector
59 for (i = OFF; i < N; i++)
61 if (ia[i] != ic[i - OFF])
62 abort ();
65 return 0;
68 int main (void)
70 check_vect ();
72 main1 (&ib[OFF]);
73 return 0;
77 /* { dg-final { scan-tree-dump-times "vectorized 3 loops" 1 "vect" } } */
78 /* { dg-final { scan-tree-dump-not "Invalid sum" "optimized" } } */