1 /* { dg-do compile } */ 2 /* { dg-options "-march=z13 -O1" } */ 3 4 typedef int v4si __attribute__ ((vector_size (16))); 5 6 int f()7 f () 8 { 9 v4si x = {0, 1, 2, 3}; 10 return x[4]; 11 } 12