aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/sse2-movhpd-2.c
blob: b5eb08657cd8e61673819d7939868c3c4d16a7ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* { dg-do run } */
/* { dg-options "-O3 -mpower8-vector -Wno-psabi" } */
/* { dg-require-effective-target lp64 } */
/* { 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 ();
}