1 /* Test that the compiler properly optimizes vector shift instructions into
2 psha/pshl on XOP systems. */
4 /* { dg-do compile { target { ! { ia32 } } } } */
5 /* { dg-options "-O2 -mxop -mno-avx2 -ftree-vectorize" } */
7 extern void exit (int);
9 typedef long __m128i
__attribute__ ((__vector_size__ (16), __may_alias__
));
24 for (i
= 0; i
< SIZE
; i
++)
25 a
.i32
[i
] = b
.i32
[i
] << c
.i32
[i
];
34 /* { dg-final { scan-assembler "vpshad" } } */