1 /* { dg-do compile { target { ! { ia32 } } } } */
2 /* { dg-require-effective-target sse2 } */
3 /* { dg-options "-O2 -msse2" } */
4 
5 #ifndef CHECK_H
6 #define CHECK_H "sse2-check.h"
7 #endif
8 
9 #ifndef TEST
10 #define TEST sse2_test
11 #endif
12 
13 #include CHECK_H
14 
15 #include <emmintrin.h>
16 
17 static __m128i
18 __attribute__((noinline, unused))
test(long long b)19 test (long long b)
20 {
21   return _mm_cvtsi64_si128 (b);
22 }
23 
24 static void
TEST(void)25 TEST (void)
26 {
27   union128i_q u;
28   long long b = 4294967295133LL;
29   long long e[2] = {0};
30 
31   u.x = test (b);
32 
33   e[0] = b;
34 
35   if (check_union128i_q (u, e))
36     abort ();
37 }
38