diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2001-05-01 14:43:17 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2001-05-01 14:43:17 +0000 |
commit | 07dd196a5c10e14893546a53b72f43841b861a8f (patch) | |
tree | 9691a03e30c4acc30b9c5d82ee63fe69000ee85e /gcc | |
parent | 9da99f7d83904a9b4b3e4479c54ecf2934f9281e (diff) | |
download | gcc-07dd196a5c10e14893546a53b72f43841b861a8f.zip gcc-07dd196a5c10e14893546a53b72f43841b861a8f.tar.gz gcc-07dd196a5c10e14893546a53b72f43841b861a8f.tar.bz2 |
* c-tree.texi (USING_STMT): Document.
From-SVN: r41726
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/c-tree.texi | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ae82798..d8655f3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-05-01 Nathan Sidwell <nathan@codesourcery.com> + + * c-tree.texi (USING_STMT): Document. + 2001-05-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * bitmap.c: Change NULL_PTR to NULL or "(rtx*)0". diff --git a/gcc/c-tree.texi b/gcc/c-tree.texi index fe368f2..27558fe 100644 --- a/gcc/c-tree.texi +++ b/gcc/c-tree.texi @@ -1373,6 +1373,7 @@ This predicate holds if the function an overloaded @findex TRY_HANDLERS @findex HANDLER_PARMS @findex HANDLER_BODY +@findex USING_STMT @tindex WHILE_STMT @findex WHILE_BODY @findex WHILE_COND @@ -1688,6 +1689,12 @@ the try block. It must rethrow the exception after executing that code. And, if an exception is thrown while the expression is executing, @code{terminate} must be called. +@item USING_STMT +Used to represent a @code{using} directive. The namespace is given by +@code{USING_STMT_NAMESPACE}, which will be a NAMESPACE_DECL. This node +is needed inside template functions, to implement using directives +during instantiation. + @item WHILE_STMT Used to represent a @code{while} loop. The @code{WHILE_COND} is the |