New vectorizer messages; message format change.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / bb-slp-15.c
blobfd065e6ce3560b9d982a7489bd21deef715f2ffa
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 __attribute__ ((noinline)) int
12 main1 (unsigned int x, unsigned int y)
14 int i;
15 unsigned int a0, a1, a2, a3;
17 if (x > y)
18 x = x + y;
19 else
20 y = x;
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 "slp" { target vect_int_mult } } } */
55 /* { dg-final { cleanup-tree-dump "slp" } } */