Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / no-scevccp-outer-10.c
blobe4d6f23f80d3594705e131063f33a5939033a431
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 for (i = 0; i < N/2; i++) {
17 sum = 0;
18 x = b[2*i];
19 y = b[2*i+1];
20 for (j = 0; j < n; j++) {
21 sum += j;
23 a[2*i] = sum + x;
24 a[2*i+1] = sum + y;
28 int main (void)
30 int i,j;
31 int sum;
33 check_vect ();
35 for (i=0; i<N; i++)
36 b[i] = i;
38 foo (N-1);
40 /* check results: */
41 for (i=0; i<N/2; i++)
43 sum = 0;
44 for (j = 0; j < N-1; j++)
45 sum += j;
46 if (a[2*i] != sum + b[2*i] || a[2*i+1] != sum + b[2*i+1])
47 abort();
50 return 0;
53 /* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED." 1 "vect" { xfail *-*-* } } } */
54 /* { dg-final { cleanup-tree-dump "vect" } } */