2 /* { dg-options "-mavx2 -O2" } */
3 /* { dg-require-effective-target avx2 } */
5 #include "avx2-check.h"
8 compute_movsxdq (int *s
, long long int *r
)
12 for (i
= 0; i
< 4; i
++)
21 long long int res_ref
[4];
23 s
.x
= _mm_set_epi32 (1, -2, 3, 4);
25 res
.x
= _mm256_cvtepi32_epi64 (s
.x
);
27 compute_movsxdq (s
.a
, res_ref
);
29 if (check_union256i_q (res
, res_ref
))