2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / set-v8hi-1.h
blob87762b82e99a5688fab71ad9a3e25f4cc701d43b
1 #include CHECK_H
3 static __m128i
4 __attribute__((noinline))
5 foo (short *v)
7 return _mm_set_epi16 (v[7], v[6], v[5], v[4], v[3], v[2], v[1], v[0]);
10 static void
11 TEST (void)
13 short v[8] = { -3, 6000, 48, 104, -90, 34567, -1248, 34678 };
14 union128i_w u;
16 u.x = foo (v);
17 if (check_union128i_w (u, v))
18 abort ();