libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / bb-slp-35.c
blob81b228b304e58f261af8b97737fd44eda0355797
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 "optimized: basic block" "slp2" { target vect_hw_misalign } } } */