(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ext/
builtin-shufflevector-4.C
// PR c++/106001
// { dg-do compile }

typedef int V __attribute__((vector_size (2 * sizeof (int))));

template <int>
void
foo ()
{
  V v = {};
  v = __builtin_shufflevector (v, v, static_cast<char>(1), static_cast<char>(0));
}

void
bar ()
{
  foo <0> ();
}