Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / c-c++-common / pr94385.c
blob0611921295c5af928e525c9a5d4b27ea884bf10f
1 /* PR c++/94385 */
2 /* { dg-do compile } */
3 /* { dg-options "" } */
5 typedef int V __attribute__((__vector_size__(16)));
6 typedef float W __attribute__((__vector_size__(16)));
8 void
9 foo (W *x, V *y)
11 *y = (({ __builtin_convertvector (*x, V); }));