This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC 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]

[PATCH] manual: _Bool has trap representations


Defined behavior for extraordinary values of _Bool would be preferable, but we can at least document what we have now.

Thanks,
Florian


2016-09-19  Florian Weimer  <fweimer@redhat.com>

	* doc/implement-c.texi (Integers implementation): _Bool has trap
	representations.


Index: gcc/doc/implement-c.texi
===================================================================
--- gcc/doc/implement-c.texi	(revision 240228)
+++ gcc/doc/implement-c.texi	(working copy)
@@ -239,9 +239,13 @@
 two's complement, or one's complement, and whether the extraordinary value
 is a trap representation or an ordinary value (C99 and C11 6.2.6.2).}
 
-GCC supports only two's complement integer types, and all bit patterns
-are ordinary values.
+The standard integer types except @code{_Bool} are represented in two's
+complement, and all bit patterns are ordinary values.
 
+Ordinary values of @code{_Bool} are stored in memory as bytes with
+values 0 or 1.  Other byte values are trap representations of the
+@code{_Bool} type.
+
 @item
 @cite{The rank of any extended integer type relative to another extended
 integer type with the same precision (C99 and C11 6.3.1.1).}

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