(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr104469.c
       1  /* PR target/104469 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-mavx512f" } */
       4  
       5  typedef double __attribute__((__vector_size__ (64))) F;
       6  typedef int __attribute__((__vector_size__ (32))) V;
       7  
       8  F
       9  foo (V v)
      10  {
      11    return __builtin_convertvector (v, F);
      12  }