LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-load-lanes-peeling-1.c
blobc9cd104e8e5885601d502c0a3ef4baa13d34150f
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
3 /* { dg-require-effective-target vect_load_lanes } */
5 void
6 f (int *__restrict a, int *__restrict b)
8 for (int i = 0; i < 96; ++i)
9 a[i] = b[i * 3] + b[i * 3 + 1] + b[i * 3 + 2];
12 /* { dg-final { scan-tree-dump-not "Data access with gaps" "vect" } } */
13 /* { dg-final { scan-tree-dump-not "epilog loop required" "vect" } } */