[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commits] r11356 - in /libdfp/trunk: ChangeLog README.developer TODO sysdeps/soft-dfp/floatsisd.c



Author: ryanarn
Date: Wed Aug 25 08:08:43 2010
New Revision: 11356

Log:
2010-08-25  Luis Machado  <luisgpm@xxxxxxxxxx>

	* sysdeps/soft-dfp/floatsisd.c: Don't generate additional decimal
	digit.

2010-08-24  Ryan S. Arnold  <rsa@xxxxxxxxxx>

	* README.developer: Documentation update.
	* TODO: Mark some items as [DONE].



Modified:
    libdfp/trunk/ChangeLog
    libdfp/trunk/README.developer
    libdfp/trunk/TODO
    libdfp/trunk/sysdeps/soft-dfp/floatsisd.c

Modified: libdfp/trunk/ChangeLog
==============================================================================
--- libdfp/trunk/ChangeLog (original)
+++ libdfp/trunk/ChangeLog Wed Aug 25 08:08:43 2010
@@ -1,3 +1,13 @@
+2010-08-25  Luis Machado  <luisgpm@xxxxxxxxxx>
+
+	* sysdeps/soft-dfp/floatsisd.c: Don't generate additional decimal
+	digit.
+
+2010-08-24  Ryan S. Arnold  <rsa@xxxxxxxxxx>
+
+	* README.developer: Documentation update.
+	* TODO: Mark some items as [DONE].
+
 2010-08-23  Carlos Eduardo Seo  <cseo@xxxxxxxxxxxxxxxxxx>
 
 	* init_dfp.c: Changed #include <dfp/dfp.h> to #include <dfp.h>.

Modified: libdfp/trunk/README.developer
==============================================================================
--- libdfp/trunk/README.developer (original)
+++ libdfp/trunk/README.developer Wed Aug 25 08:08:43 2010
@@ -596,7 +596,7 @@
 arithmetic, conversion, and comparison routines.
 
 The libdecnumber library was originaly contributed to GCC by IBM and written
-by Mike Cowlishaw.  It's inclusion into GCC was negotiated in 2005/2006 and it
+by Mike Cowlishaw.  Its inclusion into GCC was negotiated in 2005/2006 and it
 was pulled into Libdfp as a utility library shortly thereafter.
 
 GLIBC proper declined to include Libdfp upstream on the grounds that

Modified: libdfp/trunk/TODO
==============================================================================
--- libdfp/trunk/TODO (original)
+++ libdfp/trunk/TODO Wed Aug 25 08:08:43 2010
@@ -15,7 +15,7 @@
 
 libdfp version issues with older apps.
 
-If system glibc is 2.10 then make check shouldn't need all the GLIBC build
+[DONE] If system glibc is 2.10 then make check shouldn't need all the GLIBC build
 scaffolding for executing and debugging tests.
 
 Clear up make clean and make distclean.
@@ -36,7 +36,7 @@
 
 Implement libbid backend.
 
-Write User's guide
+[DONE] Write User's guide
 
 Write Man Page
 

Modified: libdfp/trunk/sysdeps/soft-dfp/floatsisd.c
==============================================================================
--- libdfp/trunk/sysdeps/soft-dfp/floatsisd.c (original)
+++ libdfp/trunk/sysdeps/soft-dfp/floatsisd.c Wed Aug 25 08:08:43 2010
@@ -48,7 +48,7 @@
         context.round = DEC_ROUND_HALF_EVEN;
 
   /* Use a C library function to get a floating point string.  */
-  sprintf (buf, INT_FMT ".0", CAST_FOR_FMT(a));
+  sprintf (buf, INT_FMT "", CAST_FOR_FMT(a));
   /* Convert from the floating point string to a decimal* type.  */
   /* PASTE(___decimal,PASTE(DEST,FromString))(&f, buf, &context);  */
   PASTE(___decimal,PASTE(DEST,FromString))(&e, buf, &context);