1 /* PR target/56225 */
2 /* { dg-do compile { target ia32 } } */
3 /* { dg-options "-O2 -march=pentium3 -mtune=generic" } */
4 
5 void bar (int);
6 
7 void
foo(int x,int y)8 foo (int x, int y)
9 {
10   __attribute__ ((vector_size (8 * sizeof (short)))) short s0 = { x };
11   bar ((short) (long) &s0 + y);
12 }
13