PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sse2-cvtdq2pd-1.c
blob9d85f5cacdc4cef1ba90bc51d28deb570c12315c
1 /* { dg-do run } */
2 /* { dg-options "-O2 -msse2" } */
3 /* { dg-require-effective-target sse2 } */
5 #ifndef CHECK_H
6 #define CHECK_H "sse2-check.h"
7 #endif
9 #ifndef TEST
10 #define TEST sse2_test
11 #endif
13 #include CHECK_H
15 #include <emmintrin.h>
17 static __m128d
18 __attribute__((noinline, unused))
19 test (__m128i p)
21 return _mm_cvtepi32_pd (p);
24 static void
25 TEST (void)
27 union128d u;
28 union128i_d s;
29 double e[2];
31 s.x = _mm_set_epi32 (123, 321, 456, 987);
33 u.x = test (s.x);
35 e[0] = (double)s.a[0];
36 e[1] = (double)s.a[1];
38 if (check_union128d (u, e))
39 abort ();