* doc/extend.texi (Loop-Specific Pragmas): Document pragma GCC unroll.
[official-gcc.git] / gcc / testsuite / g++.dg / ext / vector20.C
blob2199a22e483c51d9dae0152eacbc49f0f858379e
1 /* { dg-do compile { target c++11 } } */
3 typedef long vec __attribute__((vector_size (2 * sizeof (long))));
4 constexpr vec v = { 3, 4 };
5 constexpr vec s = v + v;
6 constexpr vec w = __builtin_shuffle (v, v);