Rebase.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / bb-slp-23.c
blobadb69795e6e9aac9708c133d74a219c5f27396c5
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 16
8 unsigned int out[N];
9 unsigned int in[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
11 int a[N], b[N];
13 __attribute__ ((noinline)) int
14 main1 (unsigned int x, unsigned int y)
16 int i;
17 unsigned int a0, a1, a2, a3;
19 /* This statement is ignored in vectorization of this basic block. */
20 a[x] = b [y];
22 a0 = in[0] + 23;
23 a1 = in[1] + 142;
24 a2 = in[2] + 2;
25 a3 = in[3] + 31;
27 out[0] = a0 * x;
28 out[1] = a1 * y;
29 out[2] = a2 * x;
30 out[3] = a3 * y;
32 if (x)
33 __asm__ volatile ("" : : : "memory");
35 /* Check results. */
36 if (out[0] != (in[0] + 23) * x
37 || out[1] != (in[1] + 142) * y
38 || out[2] != (in[2] + 2) * x
39 || out[3] != (in[3] + 31) * y)
40 abort();
42 return 0;
45 int main (void)
47 check_vect ();
49 main1 (2, 3);
51 return 0;
54 /* { dg-final { scan-tree-dump-times "basic block vectorized" 1 "slp2" { target vect_int_mult } } } */
55 /* { dg-final { cleanup-tree-dump "slp2" } } */