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 gentoo/2.23 updated. glibc-2.23-59-ga6bb643


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, gentoo/2.23 has been updated
       via  a6bb6430afb72aaa362e508be98f7b7dd1bfd13e (commit)
      from  6fc2cd54ae7e045ed19033211a289bc6421743af (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=a6bb6430afb72aaa362e508be98f7b7dd1bfd13e

commit a6bb6430afb72aaa362e508be98f7b7dd1bfd13e
Author: Stefan Liebler <stli@linux.vnet.ibm.com>
Date:   Thu Apr 14 12:21:53 2016 +0200

    Fix strfmon_l: Use specified locale for number formatting [BZ #19633]
    
    The commit 985fc132f23dbb83de76c5af9e783ef1b5900148
    "strfmon_l: Use specified locale for number formatting [BZ #19633]"
    introduced an elf/check-abi-libc testfailure due to __printf_fp_l
    on architectures which use sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h.
    
    This patch uses libc_hidden_def instead of ldbl_hidden_def.
    The ldbl_strong_alias is removed due to the rename of ___printf_fp_l
    to __printf_fp_l.
    
    ChangeLog:
    
    	* stdio-common/printf_fp.c (__printf_fp_l):
    	Rename ___printf_fp_l to __printf_fp_l and
    	remove strong alias. Use libc_hidden_def instead
    	of ldbl_hidden_def macro.
    
    (cherry picked from commit b1b8f5d89d06a994773e22ad4b7fe1036b37f8ab)
    (cherry picked from commit a37d61a662027a5d92fa54ceb75cd3167d732b5f)

diff --git a/stdio-common/printf_fp.c b/stdio-common/printf_fp.c
index baada9e..fdfe06b 100644
--- a/stdio-common/printf_fp.c
+++ b/stdio-common/printf_fp.c
@@ -209,9 +209,9 @@ hack_digit (struct hack_digit_param *p)
 }
 
 int
-___printf_fp_l (FILE *fp, locale_t loc,
-		const struct printf_info *info,
-		const void *const *args)
+__printf_fp_l (FILE *fp, locale_t loc,
+	       const struct printf_info *info,
+	       const void *const *args)
 {
   /* The floating-point value to output.  */
   union
@@ -1248,14 +1248,13 @@ ___printf_fp_l (FILE *fp, locale_t loc,
   }
   return done;
 }
-ldbl_hidden_def (___printf_fp_l, __printf_fp_l)
-ldbl_strong_alias (___printf_fp_l, __printf_fp_l)
+libc_hidden_def (__printf_fp_l)
 
 int
 ___printf_fp (FILE *fp, const struct printf_info *info,
 	      const void *const *args)
 {
-  return ___printf_fp_l (fp, _NL_CURRENT_LOCALE, info, args);
+  return __printf_fp_l (fp, _NL_CURRENT_LOCALE, info, args);
 }
 ldbl_hidden_def (___printf_fp, __printf_fp)
 ldbl_strong_alias (___printf_fp, __printf_fp)

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

Summary of changes:
 stdio-common/printf_fp.c |   11 +++++------
 1 files changed, 5 insertions(+), 6 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]