Add compile command to each testcase
[gcc-vect-testsuite.git] / no-scevccp-outer-10a.c
blob95906baedd6d8400efe56266bcf01d3f2352c715
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 40
8 int a[N];
9 int b[N];
11 __attribute__ ((noinline)) int
12 foo (int n){
13 int i,j;
14 int sum,x,y;
16 if (n<=0)
17 return 0;
19 for (i = 0; i < N/2; i++) {
20 sum = 0;
21 x = b[2*i];
22 y = b[2*i+1];
23 j = 0;
24 do {
25 sum += j;
26 } while (++j < n);
27 a[2*i] = sum + x;
28 a[2*i+1] = sum + y;
32 int main (void)
34 int i,j;
35 int sum;
37 check_vect ();
39 for (i=0; i<N; i++)
40 b[i] = i;
42 foo (N-1);
44 /* check results: */
45 for (i=0; i<N/2; i++)
47 sum = 0;
48 for (j = 0; j < N-1; j++)
49 sum += j;
50 if (a[2*i] != sum + b[2*i] || a[2*i+1] != sum + b[2*i+1])
51 abort();
54 return 0;
57 /* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED." 1 "vect" { target vect_strided2 } } } */
58 /* { dg-final { cleanup-tree-dump "vect" } } */