2 /* { dg-options "-O3 -mpower8-vector -Wno-psabi" } */
3 /* { dg-require-effective-target p8vector_hw } */
6 #define CHECK_H "sse2-check.h"
12 #define TEST sse2_test_psllq_2
15 #include <emmintrin.h>
19 __attribute__((noinline
, unused
))
20 test (__m128i s1
, __m128i c
)
22 return _mm_sll_epi64 (s1
, c
);
34 s
.x
= _mm_set_epi64x (-1, 0xf);
35 c
.x
= _mm_set_epi64x (60,50);
37 __asm("" : "+v"(s
.x
), "+v"(c
.x
));
38 u
.x
= test (s
.x
, c
.x
);
41 for (i
= 0; i
< 2; i
++)
42 e
[i
] = s
.a
[i
] << c
.a
[0];
44 if (check_union128i_q (u
, e
))