1 typedef signed char v4i8 __attribute__ ((vector_size(4)));
2 v4i8 global_vector = {1, 2, 3, 4};
3 
4 int
main()5 main ()
6 {
7   return 0;
8 }
9