diff options
author | Gabriel F. T. Gomes <gabrielftg@linux.ibm.com> | 2019-07-11 11:48:28 -0300 |
---|---|---|
committer | Gabriel F. T. Gomes <gabrielftg@linux.ibm.com> | 2019-12-13 19:06:02 -0300 |
commit | 39a7b82283cab9dbfc119d8411d26d55a65f5eb4 (patch) | |
tree | 74a7c8d739205d232fbf6d113d8ab3001d0fcb16 /misc/bits/syslog-ldbl.h | |
parent | b851fea5c875acdca549103493d0439e91360d7e (diff) | |
download | glibc-gabriel/powerpc-ieee128-printscan.zip glibc-gabriel/powerpc-ieee128-printscan.tar.gz glibc-gabriel/powerpc-ieee128-printscan.tar.bz2 |
RFC: powerpc64le: Enable support for IEEE long doublegabriel/powerpc-ieee128-printscan
Not for glibc-2.31 - Do not commit!
No changes since v3.
Changes since v2:
- Added definition of LDBL_IBM128_COMPAT_VERSION and
LDBL_IBM128_VERSION (moved from a previous commit).
Changes since v1:
- Use __LONG_DOUBLE_USES_FLOAT128 directly.
-- 8< --
On platforms where long double may have two different formats, i.e.: the
same format as double (64-bits) or something else (128-bits), building
with -mlong-double-128 is the default and function calls in the user
program match the name of the function in Glibc. When building with
-mlong-double-64, Glibc installed headers redirect such calls to the
appropriate function.
This patch adds similar redirections to be used by user code builds in
IEEE long double mode (-mabi=ieeelongdouble). It also skips some uses
of libc_hidden_proto in internal headers, because they also produce
redirections, causing a redirection conflict.
PS: Missing NEWS entry.
Diffstat (limited to 'misc/bits/syslog-ldbl.h')
-rw-r--r-- | misc/bits/syslog-ldbl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/bits/syslog-ldbl.h b/misc/bits/syslog-ldbl.h index 8d60fb8..5075e50 100644 --- a/misc/bits/syslog-ldbl.h +++ b/misc/bits/syslog-ldbl.h @@ -27,9 +27,9 @@ __LDBL_REDIR_DECL (vsyslog) #endif #if __USE_FORTIFY_LEVEL > 0 && defined __fortify_function -__LDBL_REDIR_DECL (__syslog_chk) +__LDBL_REDIR2_DECL (syslog_chk) # ifdef __USE_MISC -__LDBL_REDIR_DECL (__vsyslog_chk) +__LDBL_REDIR2_DECL (vsyslog_chk) # endif #endif |