PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sse2-movhpd-2.c
blobe86259acb849e521dbd464e8244417b6d11d755b
1 /* { dg-do run } */
2 /* { dg-options "-O2 -mfpmath=sse -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 void
18 __attribute__((noinline, unused))
19 test (double *p, __m128d a)
21 return _mm_storeh_pd (p, a);
24 static void
25 TEST (void)
27 union128d s;
28 double d[1];
29 double e[1];
31 s.x = _mm_set_pd (2134.3343,1234.635654);
32 test (d, s.x);
34 e[0] = s.a[1];
36 if (e[0] != d[0])
37 abort ();