This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: GDB/libiberty support for IBM long double


Thanks Daniel. I've checked in this version.

On Wed, 2008-01-02 at 13:27 -0500, Daniel Jacobowitz wrote:
> On Wed, Jan 02, 2008 at 04:05:26PM -0200, Luis Machado wrote:
> > 2008-01-02  Luis Machado  <luisgpm@br.ibm.com>
> > 
> >         * doublest.c (convert_floatformat_to_doublest): Call 
> > 	floatformat_to_doublest instead of floatformat_to_double and use
> > 	DOUBLEST variables.
> > 	(convert_doublest_to_floatformat): Call floatformat_from_doublest
> > 	instead of floatformat_from_double and use DOUBLEST variables.
> 
> OK.
> 
-- 
Luis Machado
Software Engineer 
IBM Linux Technology Center
2008-01-03  Luis Machado  <luisgpm@br.ibm.com>

        * doublest.c (convert_floatformat_to_doublest): Call 
	floatformat_to_doublest instead of floatformat_to_double and use
	DOUBLEST variables.
	(convert_doublest_to_floatformat): Call floatformat_from_doublest
	instead of floatformat_from_double and use DOUBLEST variables.

Index: gdb/doublest.c
===================================================================
--- gdb.orig/doublest.c	2008-01-02 08:24:41.000000000 -0800
+++ gdb/doublest.c	2008-01-02 09:53:55.000000000 -0800
@@ -202,19 +202,19 @@
 
   if (fmt->split_half)
     {
-      double dtop, dbot;
-      floatformat_to_double (fmt->split_half, ufrom, &dtop);
+      DOUBLEST dtop, dbot;
+      floatformat_to_doublest (fmt->split_half, ufrom, &dtop);
       /* Preserve the sign of 0, which is the sign of the top
 	 half.  */
       if (dtop == 0.0)
 	{
-	  *to = (DOUBLEST) dtop;
+	  *to = dtop;
 	  return;
 	}
-      floatformat_to_double (fmt->split_half,
+      floatformat_to_doublest (fmt->split_half,
 			     ufrom + fmt->totalsize / FLOATFORMAT_CHAR_BIT / 2,
 			     &dbot);
-      *to = (DOUBLEST) dtop + (DOUBLEST) dbot;
+      *to = dtop + dbot;
       return;
     }
 
@@ -417,7 +417,7 @@
 	 removed via storing in memory, and so the top half really is
 	 the result of converting to double.  */
       static volatile double dtop, dbot;
-      double dtopnv, dbotnv;
+      DOUBLEST dtopnv, dbotnv;
       dtop = (double) dfrom;
       /* If the rounded top half is Inf, the bottom must be 0 not NaN
 	 or Inf.  */
@@ -427,8 +427,8 @@
 	dbot = (double) (dfrom - (DOUBLEST) dtop);
       dtopnv = dtop;
       dbotnv = dbot;
-      floatformat_from_double (fmt->split_half, &dtopnv, uto);
-      floatformat_from_double (fmt->split_half, &dbotnv,
+      floatformat_from_doublest (fmt->split_half, &dtopnv, uto);
+      floatformat_from_doublest (fmt->split_half, &dbotnv,
 			       (uto
 				+ fmt->totalsize / FLOATFORMAT_CHAR_BIT / 2));
       return;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]