| /* { dg-do run } */ |
| /* { dg-options "-O3 -mpower8-vector -Wno-psabi" } */ |
| /* { dg-require-effective-target p8vector_hw } */ |
| |
| #ifndef CHECK_H |
| #define CHECK_H "sse2-check.h" |
| #endif |
| |
| #include CHECK_H |
| |
| #ifndef TEST |
| #define TEST sse2_test_movhpd_2 |
| #endif |
| |
| #include <emmintrin.h> |
| |
| static void |
| __attribute__((noinline, unused)) |
| test (double *p, __m128d a) |
| { |
| __asm("" : "+v"(a), "+b"(p)); |
| return _mm_storeh_pd (p, a); |
| } |
| |
| static void |
| TEST (void) |
| { |
| union128d s; |
| double d[1]; |
| double e[1]; |
| |
| s.x = _mm_set_pd (2134.3343,1234.635654); |
| test (d, s.x); |
| |
| e[0] = s.a[1]; |
| |
| if (e[0] != d[0]) |
| abort (); |
| } |