1 /* PR middle-end/96426 */
2 
3 typedef long long V __attribute__((vector_size(16)));
4 typedef double W __attribute__((vector_size(16)));
5 
6 void
foo(V * v)7 foo (V *v)
8 {
9   __builtin_convertvector (*v, W);
10 }
11