blob: 0174fb604854b77c7bcd3c48e2d863c37f7f2cdf [file] [log] [blame]
typedef float V8SF __attribute__ ((vector_size (32)));
void bar (V8SF);
void
foo (float x)
{
bar ((V8SF) { x, x, x, x, x, x, x, x });
}