OSDN Git Service

Backported from mainline
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr33617.c
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
6 foo (float x)
7 {
8   bar ((V8SF) { x, x, x, x, x, x, x, x });
9 }