1 /* { dg-do assemble } */ 2 typedef int __attribute((vector_size(16))) V; f(void)3 V f(void) { 4 return (V){ (int)f, (int)f, (int)f, (int)f }; 5 } 6