OSDN Git Service

gcc/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr33617.c
1 typedef float V8SF __attribute__ ((vector_size (32)));
2 void bar (V8SF);
3 void
4 foo (float x)
5 {
6   bar ((V8SF) { x, x, x, x, x, x, x, x });
7 }