libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / slp-57.c
bloba35c4ef62030a13a80850d021f2c24559a1c19e8
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
4 int a[1024];
5 void foo (int x)
7 for (int i = 0; i < 1024; i += 2)
9 a[i] = x;
10 a[i+1] = 1;
14 /* { dg-final { scan-tree-dump "vectorizing stmts using SLP" "vect" } } */