aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.target/i386/vcvtph2ps-3.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.target/i386/vcvtph2ps-3.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.target/i386/vcvtph2ps-3.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.target/i386/vcvtph2ps-3.c b/gcc-4.8/gcc/testsuite/gcc.target/i386/vcvtph2ps-3.c
deleted file mode 100644
index 49b61f678..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.target/i386/vcvtph2ps-3.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* { dg-do run } */
-/* { dg-require-effective-target f16c } */
-/* { dg-options "-O2 -mf16c" } */
-
-#include "f16c-check.h"
-
-static void
-f16c_test (void)
-{
- unsigned short val = 0xc000;
- float exp = -2;
- float res;
-
- res = _cvtsh_ss (val);
-
- if (res != exp)
- abort ();
-}