1 /* { dg-do compile } */ 2 /* { dg-require-effective-target vect_int } */ 3 foo(int * __restrict__ p,short * __restrict__ q)4void foo (int * __restrict__ p, short * __restrict__ q) 5 { 6 p[0] = q[0] + 1; 7 p[1] = q[1] + 1; 8 p[2] = q[2] + 1; 9 p[3] = q[3] + 1; 10 } 11 12 /* { dg-final { scan-tree-dump "basic block vectorized" "slp2" { target vect_hw_misalign } } } */ 13