Implement C _FloatN, _FloatNx types [version 6]

Joseph Myers joseph@codesourcery.com
Mon Aug 22 10:46:00 GMT 2016


On Sun, 21 Aug 2016, Andreas Schwab wrote:

> > +  TEST_I_F(TItype, UTItype, _Float128, FLT128X_MANT_DIG, FLT128X_MAX_EXP);
> 
> s/_Float128/_Float128x/

Thanks, fixed.

gcc/testsuite:
2016-08-22  Joseph Myers  <joseph@codesourcery.com>

	* gcc.dg/torture/fp-int-convert-float128x-timode.c,
	gcc.dg/torture/fp-int-convert-float32x-timode.c,
	gcc.dg/torture/fp-int-convert-float64x-timode.c: Correct type
	names in calls to TEST_I_F.

Index: gcc/testsuite/gcc.dg/torture/fp-int-convert-float128x-timode.c
===================================================================
--- gcc/testsuite/gcc.dg/torture/fp-int-convert-float128x-timode.c	(revision 239654)
+++ gcc/testsuite/gcc.dg/torture/fp-int-convert-float128x-timode.c	(working copy)
@@ -11,6 +11,6 @@
 int
 main (void)
 {
-  TEST_I_F(TItype, UTItype, _Float128, FLT128X_MANT_DIG, FLT128X_MAX_EXP);
+  TEST_I_F(TItype, UTItype, _Float128x, FLT128X_MANT_DIG, FLT128X_MAX_EXP);
   exit (0);
 }
Index: gcc/testsuite/gcc.dg/torture/fp-int-convert-float32x-timode.c
===================================================================
--- gcc/testsuite/gcc.dg/torture/fp-int-convert-float32x-timode.c	(revision 239654)
+++ gcc/testsuite/gcc.dg/torture/fp-int-convert-float32x-timode.c	(working copy)
@@ -11,6 +11,6 @@
 int
 main (void)
 {
-  TEST_I_F(TItype, UTItype, _Float32, FLT32X_MANT_DIG, FLT32X_MAX_EXP);
+  TEST_I_F(TItype, UTItype, _Float32x, FLT32X_MANT_DIG, FLT32X_MAX_EXP);
   exit (0);
 }
Index: gcc/testsuite/gcc.dg/torture/fp-int-convert-float64x-timode.c
===================================================================
--- gcc/testsuite/gcc.dg/torture/fp-int-convert-float64x-timode.c	(revision 239654)
+++ gcc/testsuite/gcc.dg/torture/fp-int-convert-float64x-timode.c	(working copy)
@@ -11,6 +11,6 @@
 int
 main (void)
 {
-  TEST_I_F(TItype, UTItype, _Float64, FLT64X_MANT_DIG, FLT64X_MAX_EXP);
+  TEST_I_F(TItype, UTItype, _Float64x, FLT64X_MANT_DIG, FLT64X_MAX_EXP);
   exit (0);
 }

-- 
Joseph S. Myers
joseph@codesourcery.com



More information about the Gcc-patches mailing list