aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/set-v8hi-1.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/set-v8hi-1.h')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/set-v8hi-1.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/set-v8hi-1.h b/gcc-4.8/gcc/testsuite/gcc.target/i386/set-v8hi-1.h
deleted file mode 100644
index 87762b82e..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/set-v8hi-1.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#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 ();
-}