aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/set-v8hi-1.h
blob: 87762b82e99a5688fab71ad9a3e25f4cc701d43b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include CHECK_H

static __m128i
__attribute__((noinline))
foo (short *v)
{
  return _mm_set_epi16 (v[7], v[6], v[5], v[4], v[3], v[2], v[1], v[0]);
}

static void
TEST (void)
{
  short v[8] = { -3, 6000, 48, 104, -90, 34567, -1248, 34678 };
  union128i_w u;

  u.x = foo (v);
  if (check_union128i_w (u, v))
    abort ();
}