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