SVE Intrinsics: Change return type of redirect_call to gcall.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-iv-10.c
blob83bc7805c3de27ef3dd697d593ee86c1662e742c
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 16
8 __attribute__ ((noinline))
9 int main1 ()
11 int i,j;
12 int ia[N];
14 /* Induction. */
15 for (j=0,i=N; j<N,i>0; i--,j++) {
16 ia[j] = i;
19 /* check results: */
20 #pragma GCC novector
21 for (j=0,i=N; j<N,i>0; i--,j++) {
22 if (ia[j] != i)
23 abort ();
26 return 0;
29 int main (void)
31 check_vect();
33 return main1 ();
36 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */