about summary refs log tree commit diff
path: root/bits/libc-header-start.h
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2016-08-03 17:30:41 +0000
committerJoseph Myers <joseph@codesourcery.com>2016-08-03 17:30:41 +0000
commitbf91be88ea90c1ea888d5646270d66363389ce96 (patch)
tree47698077c37a33c048dd303dfe41366d2f017bca /bits/libc-header-start.h
parentf2de695bf6ab3d346bf0ec4e436f124cff8edfd4 (diff)
downloadglibc-bf91be88ea90c1ea888d5646270d66363389ce96.tar.gz
glibc-bf91be88ea90c1ea888d5646270d66363389ce96.tar.xz
glibc-bf91be88ea90c1ea888d5646270d66363389ce96.zip
Support __STDC_WANT_IEC_60559_BFP_EXT__ feature test macro.
This patch implements support for the __STDC_WANT_IEC_60559_BFP_EXT__
feature test macro from ISO/IEC 18661-1:2014, following the
__GLIBC_USE approach now used for __STDC_WANT_LIB_EXT2__.  For this
macro, the relevant consideration is whether it is defined or
undefined when an affected header is included (not what its value is
if defined, and not whether it's defined or undefined when any other
unaffected system header is included).

Currently this macro only affects the issignaling macro and the nextup
and nextdown functions (so they can be enabled by defining this macro,
not just by defining _GNU_SOURCE as previously).  Any further features
from this TS added in future would also be conditioned on this macro.

Tested for x86_64 and x86 (testsuite, and that installed stripped
shared libraries are unchanged by the patch).

	* bits/libc-header-start.h (__GLIBC_USE_IEC_60559_BFP_EXT): New
	macro.
	* include/features.h (__STDC_WANT_IEC_60559_BFP_EXT__): Document.
	* manual/arith.texi (issignaling): Document as ISO from TS
	18661-1:2014.
	(nextup): Likewise.
	(nextupf): Likewise.
	(nextupl): Likewise.
	(nextdown): Likewise.
	(nextdownf): Likewise.
	(nextdownl): Likewise.
	* manual/creature.texi (__STDC_WANT_IEC_60559_BFP_EXT__): Document
	macro.
	* math/math.h: Define
	__GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION and include
	<bits/libc-header-start.h> instead of including <features.h>.
	(issignaling): Define if [__GLIBC_USE (IEC_60559_BFP_EXT)], not
	[__USE_GNU].
	* math/bits/mathcalls.h (nextdown): Declare if
	[__GLIBC_USE (IEC_60559_BFP_EXT)], not [__USE_GNU].
	(nextup): Likewise.
	(__issignaling): Likewise.
Diffstat (limited to 'bits/libc-header-start.h')
-rw-r--r--bits/libc-header-start.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/bits/libc-header-start.h b/bits/libc-header-start.h
index c6663074a8..6a5850526c 100644
--- a/bits/libc-header-start.h
+++ b/bits/libc-header-start.h
@@ -41,3 +41,12 @@
 #else
 # define __GLIBC_USE_LIB_EXT2 0
 #endif
+
+/* ISO/IEC TS 18661-1:2014 defines the __STDC_WANT_IEC_60559_BFP_EXT__
+   macro.  */
+#undef __GLIBC_USE_IEC_60559_BFP_EXT
+#if defined __USE_GNU || defined __STDC_WANT_IEC_60559_BFP_EXT__
+# define __GLIBC_USE_IEC_60559_BFP_EXT 1
+#else
+# define __GLIBC_USE_IEC_60559_BFP_EXT 0
+#endif