aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Sayle <roger@eyesopen.com>2006-02-20 15:05:15 +0000
committerRoger Sayle <sayle@gcc.gnu.org>2006-02-20 15:05:15 +0000
commit9a0ceb314437f690f13590e2a6ad5be9828674dc (patch)
tree95956c7eaa82d30022fa5f3553e9e98954c6a1f3
parentb2d7fd7bf863fa301a2b4288df61433a4b76d13b (diff)
downloadgcc-9a0ceb314437f690f13590e2a6ad5be9828674dc.zip
gcc-9a0ceb314437f690f13590e2a6ad5be9828674dc.tar.gz
gcc-9a0ceb314437f690f13590e2a6ad5be9828674dc.tar.bz2
re PR middle-end/26236 (CHAR_TYPE is still referenced in c-tree.texi)
PR middle-end/26236 * doc/c-tree.texi (INTEGER_TYPE): Remove reference to the now deprecated CHAR_TYPE tree code. From-SVN: r111305
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/doc/c-tree.texi5
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4419dd1..3b52507 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2006-02-20 Roger Sayle <roger@eyesopen.com>
+
+ PR middle-end/26236
+ * doc/c-tree.texi (INTEGER_TYPE): Remove reference to the now
+ deprecated CHAR_TYPE tree code.
+
2006-02-20 Paolo Bonzini <bonzini@gnu.org>
* configure.ac (target_list): Add install-info, dvi, html.
diff --git a/gcc/doc/c-tree.texi b/gcc/doc/c-tree.texi
index 62e7738..af85baf 100644
--- a/gcc/doc/c-tree.texi
+++ b/gcc/doc/c-tree.texi
@@ -429,9 +429,8 @@ Used to represent the @code{void} type.
@item INTEGER_TYPE
Used to represent the various integral types, including @code{char},
@code{short}, @code{int}, @code{long}, and @code{long long}. This code
-is not used for enumeration types, nor for the @code{bool} type. Note
-that GCC's @code{CHAR_TYPE} node is @emph{not} used to represent
-@code{char}. The @code{TYPE_PRECISION} is the number of bits used in
+is not used for enumeration types, nor for the @code{bool} type.
+The @code{TYPE_PRECISION} is the number of bits used in
the representation, represented as an @code{unsigned int}. (Note that
in the general case this is not the same value as @code{TYPE_SIZE};
suppose that there were a 24-bit integer type, but that alignment