testsuite: Revert to the original version of pr100056.c
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-77.c
blob6702b0b9ac795d813cdb9b69fca5971e372057c3
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 8
8 #define OFF 8
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, 14, 22, 26, 34};
16 __attribute__ ((noinline))
17 int main1 (int *ib, int off)
19 int i;
20 int ia[N];
22 for (i = 0; i < N; i++)
24 ia[i] = ib[i+off];
28 /* check results: */
29 #pragma GCC novector
30 for (i = 0; i < N; i++)
32 if (ia[i] != ib[i+off])
33 abort ();
36 return 0;
39 int main (void)
41 check_vect ();
43 main1 (ib, 8);
44 return 0;
47 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
48 /* { dg-final { scan-tree-dump-not "Invalid sum" "optimized" } } */