1/* { dg-options "-w -Wno-psabi" { target { i?86-*-* x86_64-*-* } } } */
2
3typedef float V8SF __attribute__ ((vector_size (32)));
4void bar (V8SF);
5void
6foo (float x)
7{
8  bar ((V8SF) { x, x, x, x, x, x, x, x });
9}
10