diff options
author | Joseph Myers <jsm28@cam.ac.uk> | 2001-10-07 12:05:45 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2001-10-07 12:05:45 +0100 |
commit | 59d42021f94fd5aa07147cb63d9187c93f4f13b9 (patch) | |
tree | 290538b8a5f9fd01d6a105715cb56d12bd7a9bd1 /gcc/doc/c-tree.texi | |
parent | 96cd0e2d6bc4a178ade989180d2c09e5b0e72aa5 (diff) | |
download | gcc-59d42021f94fd5aa07147cb63d9187c93f4f13b9.zip gcc-59d42021f94fd5aa07147cb63d9187c93f4f13b9.tar.gz gcc-59d42021f94fd5aa07147cb63d9187c93f4f13b9.tar.bz2 |
c-tree.texi, tm.texi: Consistently put NULL and NULL_TREE inside @code.
* doc/c-tree.texi, doc/tm.texi: Consistently put NULL and
NULL_TREE inside @code.
From-SVN: r46057
Diffstat (limited to 'gcc/doc/c-tree.texi')
-rw-r--r-- | gcc/doc/c-tree.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/doc/c-tree.texi b/gcc/doc/c-tree.texi index 350c9bc..e36090a 100644 --- a/gcc/doc/c-tree.texi +++ b/gcc/doc/c-tree.texi @@ -500,7 +500,7 @@ arguments. Note that in C (but not in C++) a function declared like @code{void f()} is an unprototyped function taking a variable number of arguments; the -@code{TYPE_ARG_TYPES} of such a function will be NULL@. +@code{TYPE_ARG_TYPES} of such a function will be @code{NULL}. @item METHOD_TYPE Used to represent the type of a non-static member function. Like a @@ -1308,7 +1308,7 @@ This predicate holds if the function an overloaded @findex WHILE_COND A function that has a definition in the current translation unit will -have a non-NULL @code{DECL_INITIAL}. However, back ends should not make +have a non-@code{NULL} @code{DECL_INITIAL}. However, back ends should not make use of the particular value given by @code{DECL_INITIAL}. The @code{DECL_SAVED_TREE} macro will give the complete body of the @@ -1423,8 +1423,8 @@ fields. @item CASE_LABEL Use to represent a @code{case} label, range of @code{case} labels, or a -@code{default} label. If @code{CASE_LOW} is NULL_TREE, then this is a a -@code{default} label. Otherwise, if @code{CASE_HIGH} is NULL_TREE, then +@code{default} label. If @code{CASE_LOW} is @code{NULL_TREE}, then this is a a +@code{default} label. Otherwise, if @code{CASE_HIGH} is @code{NULL_TREE}, then this is an ordinary @code{case} label. In this case, @code{CASE_LOW} is an expression giving the value of the label. Both @code{CASE_LOW} and @code{CASE_HIGH} are @code{INTEGER_CST} nodes. These values will have |