2018-11-28 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr87286.c
blob155ace8021c95fa266792c465b4ff696fa170c1e
1 /* { dg-options "-Wno-psabi" } */
2 enum foo { F };
3 typedef enum foo vec_foo __attribute__((vector_size (16)));
4 vec_foo add (vec_foo x, vec_foo y) { return x + y; }