2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / no-scevccp-outer-10b.c
blobb28111c22c8836a24686ecb1e5d21489de6f38d9
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 for (j = 0; j < n; j++) {
24 sum += j;
26 a[2*i] = sum + x;
27 a[2*i+1] = sum + y;
31 int main (void)
33 int i,j;
34 int sum;
36 check_vect ();
38 for (i=0; i<N; i++)
39 b[i] = i;
41 foo (N-1);
43 /* check results: */
44 for (i=0; i<N/2; i++)
46 sum = 0;
47 for (j = 0; j < N-1; j++)
48 sum += j;
49 if (a[2*i] != sum + b[2*i] || a[2*i+1] != sum + b[2*i+1])
50 abort();
53 return 0;
56 /* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED." 1 "vect" { target { vect_interleave && vect_extract_even_odd } } } } */
57 /* { dg-final { cleanup-tree-dump "vect" } } */