blob: 0611921295c5af928e525c9a5d4b27ea884bf10f [file] [log] [blame]
/* PR c++/94385 */
/* { dg-do compile } */
/* { dg-options "" } */
typedef int V __attribute__((__vector_size__(16)));
typedef float W __attribute__((__vector_size__(16)));
void
foo (W *x, V *y)
{
*y = (({ __builtin_convertvector (*x, V); }));
}