2018-01-16 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / bb-slp-35.c
blob5803f8e80804c8207a412f063ae3a9b5ea1b9fe8
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
4 void foo (int * __restrict__ p, short * __restrict__ q)
6 p[0] = q[0] + 1;
7 p[1] = q[1] + 1;
8 p[2] = q[2] + 1;
9 p[3] = q[3] + 1;
12 /* { dg-final { scan-tree-dump "basic block vectorized" "slp2" { target vect_hw_misalign } } } */