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