2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / slp-9.c
blobeefb81680a4065bc9769434cf5a0842e1877a186
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 64
8 short X[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
9 short Y[N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
10 int result[N];
12 /* short->int widening-mult */
13 int
14 foo1(int len) {
15 int i;
17 for (i=0; i<len/2; i++) {
18 result[2*i] = X[2*i] * Y[2*i];
19 result[2*i+1] = X[2*i+1] * Y[2*i+1];
23 int main (void)
25 int i;
27 check_vect ();
29 for (i=0; i<N; i++) {
30 X[i] = i;
31 Y[i] = 64-i;
34 foo1 (N);
36 for (i=0; i<N; i++) {
37 if (result[i] != X[i] * Y[i])
38 abort ();
41 return 0;
44 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target vect_widen_mult_hi_to_si } } }*/
45 /* { dg-final { scan-tree-dump-times "vectorizing stmts using SLP" 1 "vect" { target vect_widen_mult_hi_to_si } } } */
46 /* { dg-final { cleanup-tree-dump "vect" } } */