rt_gccstream/gcc/testsuite/gcc.c-torture/compile/pr33617.c

8 lines
138 B
C

typedef float V8SF __attribute__ ((vector_size (32)));
void bar (V8SF);
void
foo (float x)
{
bar ((V8SF) { x, x, x, x, x, x, x, x });
}