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