modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr33617.c (about) 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 }