This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc 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]

GNU C Library master sources branch master updated. glibc-2.24-474-ge96a3ca


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  e96a3ca70319aa7cd6bef7c4c67007264ce4d972 (commit)
      from  8b9283dabd5ab3524c9a76fabbb379f950a86e6d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=e96a3ca70319aa7cd6bef7c4c67007264ce4d972

commit e96a3ca70319aa7cd6bef7c4c67007264ce4d972
Author: Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
Date:   Fri Oct 28 17:24:17 2016 -0200

    Fix arg used as litteral suffix in tst-strfrom.h
    
    The macro ENTRY in tst-strfrom.h is used to generate the input values for
    each floating-point type (float, double, long double).  It should append
    the parameter LSUF (Literal suffix) to the floating-point number, but is
    using CSUF (C function suffix).  This patch fixes it.
    
    Tested for powerpc64le and x86_64.

diff --git a/ChangeLog b/ChangeLog
index f40e09f..c7b055d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-12-14  Gabriel F. T. Gomes  <gftg@linux.vnet.ibm.com>
+
+	* stdlib/tst-strfrom.h (ENTRY): Replace use of CSUF with LSUF.
+
 2016-12-14  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
 	* sysdeps/unix/sysv/linux/renameat.c: New file.
diff --git a/stdlib/tst-strfrom.h b/stdlib/tst-strfrom.h
index 31a6492..75be55f 100644
--- a/stdlib/tst-strfrom.h
+++ b/stdlib/tst-strfrom.h
@@ -36,7 +36,7 @@
 #define STRUCT_FOREACH_FLOAT_FTYPE GEN_TEST_STRTOD_FOREACH (FTYPE_MEMBER)
 
 #define ENTRY(FSUF, FTYPE, FTOSTR, LSUF, CSUF, ...)  \
-   CONCAT (__VA_ARGS__, CSUF),
+   CONCAT (__VA_ARGS__, LSUF),
 /* This is hacky way around the seemingly unavoidable macro
  * expansion of the INFINITY or HUGE_VAL like macros in the
  * above.  It is assumed the compiler will implicitly convert

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog            |    4 ++++
 stdlib/tst-strfrom.h |    2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


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