(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
pr94385.c
       1  /* PR c++/94385 */
       2  /* { dg-do compile } */
       3  /* { dg-options "" } */
       4  
       5  typedef int V __attribute__((__vector_size__(16)));
       6  typedef float W __attribute__((__vector_size__(16)));
       7  
       8  void
       9  foo (W *x, V *y)
      10  {
      11    *y = (({ __builtin_convertvector (*x, V); }));
      12  }