1 /* { dg-do compile { target { ! ia32 } } } */
2 /* { dg-skip-if "" { *-*-* } { "-march=*" } { "-march=core2" } } */
3 /* { dg-options "-O2 -msse4 -march=core2 -dp" } */
4 
5 #include <emmintrin.h>
6 
7 __m128i
test(long long b)8 test (long long b)
9 {
10   return _mm_cvtsi64_si128 (b);
11 }
12 
13 /* { dg-final { scan-assembler-times "\\*vec_concatv2di_0/0" 1 } } */
14