1 /* { dg-do compile { target { *-*-linux* && lp64 } } } */ 2 /* { dg-options "-O -mabi=ms -mstackrealign" } */ 3 4 typedef float V __attribute__ ((vector_size (16))); 5 fn1(V * x)6 int fn1 (V * x) 7 { 8 V a = *x; 9 return a[0]; 10 } 11