(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr96426.c
       1  /* PR middle-end/96426 */
       2  
       3  typedef long long V __attribute__((vector_size(16)));
       4  typedef double W __attribute__((vector_size(16)));
       5  
       6  void
       7  foo (V *v)
       8  {
       9    __builtin_convertvector (*v, W);
      10  }