blob: 6ce4695da07d1cc08c6c193d1babecc7a9e717d6 [file] [log] [blame]
/* PR target/101046 */
/* { dg-do compile } */
/* { dg-options "-ftree-ter -mavx512bw -mavx512vl" } */
typedef unsigned short __attribute__((__vector_size__(16))) U;
typedef unsigned int __attribute__((__vector_size__(16))) V;
typedef unsigned int __attribute__((__vector_size__(32))) W;
U
foo (void)
{
return __builtin_convertvector (__builtin_shufflevector ((V){}, (W){},
0, 0, 1, 0,
5, 5, 0, 2), U);
}