diff mbox

Implement C _FloatN, _FloatNx types [version 6]

Message ID alpine.DEB.2.20.1608221045130.32194@digraph.polyomino.org.uk
State New
Headers show

Commit Message

Joseph Myers Aug. 22, 2016, 10:45 a.m. UTC
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.
diff mbox

Patch

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);
 }