1 #include CHECK_H
2
3 static __m128i
4 __attribute__((noinline))
5 foo (short *v)
6 {
7 return _mm_set_epi16 (v[7], v[6], v[5], v[4], v[3], v[2], v[1], v[0]);
8 }
9
10 static void
11 TEST (void)
12 {
13 short v[8] = { -3, 6000, 48, 104, -90, 34567, -1248, 34678 };
14 union128i_w u;
15
16 u.x = foo (v);
17 if (check_union128i_w (u, v))
18 abort ();
19 }