testsuite: Add -Wno-psabi to pr104505.c
[official-gcc.git] / gcc / testsuite / c-c++-common / pr104505.c
blob2fc3bb99ddc209ab89cbc1e20f9b7902f1c07123
1 /* { dg-do compile } */
2 /* { dg-additional-options "-Wno-psabi" } */
4 typedef char __attribute__((__vector_size__ (8))) U;
5 typedef short __attribute__((__vector_size__ (16))) V;
7 U u;
9 void
10 foo (V v)
12 u = __builtin_shufflevector (u, u, __builtin_convertvector (v, U)); /* { dg-error "invalid element index" } */