Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.dg / vect / bb-slp-3.c
blob07ad7129ad729a138643626c5eb2abf454057187
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include <stdio.h>
5 #include "tree-vect.h"
7 #define N 16
9 unsigned int out[N];
10 unsigned int in[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
12 __attribute__ ((noinline)) int
13 main1 ()
15 int i;
16 unsigned int *pin = &in[0];
17 unsigned int *pout = &out[0];
19 *pout++ = *pin++;
20 *pout++ = *pin++;
21 *pout++ = *pin++;
22 *pout++ = *pin++;
24 /* Check results. */
25 if (out[0] != in[0]
26 || out[1] != in[1]
27 || out[2] != in[2]
28 || out[3] != in[3])
29 abort();
31 return 0;
34 int main (void)
36 check_vect ();
38 main1 ();
40 return 0;
43 /* { dg-final { scan-tree-dump-times "basic block vectorized using SLP" 1 "slp" } } */
44 /* { dg-final { cleanup-tree-dump "slp" } } */