PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sse2-cvtsi2sd-2.c
blobaf6ff1e65ad52faa691ee4ff2b7db77c296bdc00
1 /* { dg-do run { target { ! ia32 } } } */
2 /* { dg-require-effective-target sse2 } */
3 /* { dg-options "-O2 -msse2" } */
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 (__m128d p, long long b)
21 return _mm_cvtsi64_sd (p, b);
24 static void
25 TEST (void)
27 union128d u, s;
28 long long b = 42949672951333LL;
29 double e[2];
31 s.x = _mm_set_pd (123.321, 456.987);
33 u.x = test (s.x, b);
34 e[0] = (double)b;
35 e[1] = s.a[1];
36 if (check_union128d (u, e))
37 abort ();