aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/arm-fp16-int-convert-alt.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/torture/arm-fp16-int-convert-alt.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/torture/arm-fp16-int-convert-alt.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/arm-fp16-int-convert-alt.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/arm-fp16-int-convert-alt.c
deleted file mode 100644
index bcd7aeff1..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/torture/arm-fp16-int-convert-alt.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Test floating-point conversions. Standard types and __fp16. */
-/* { dg-do run { target arm*-*-* } } */
-/* { dg-options "-mfp16-format=alternative" } */
-
-#include "fp-int-convert.h"
-#define FP16_MANT_DIG 11
-
-int
-main (void)
-{
- TEST_I_F(signed char, unsigned char, float, FP16_MANT_DIG);
- TEST_I_F(signed short, unsigned short, float, FP16_MANT_DIG);
- TEST_I_F(signed int, unsigned int, float, FP16_MANT_DIG);
- TEST_I_F(signed long, unsigned long, float, FP16_MANT_DIG);
- TEST_I_F(signed long long, unsigned long long, float, FP16_MANT_DIG);
- exit (0);
-}