From 42dcc26a3e57b0370dde6e61a5674b63e86f0c6a Mon Sep 17 00:00:00 2001 From: nathan Date: Tue, 1 May 2001 14:43:17 +0000 Subject: [PATCH] * c-tree.texi (USING_STMT): Document. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41726 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 4 ++++ gcc/c-tree.texi | 7 +++++++ 2 files changed, 11 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ae82798df81..d8655f32a20 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-05-01 Nathan Sidwell + + * c-tree.texi (USING_STMT): Document. + 2001-05-01 Kaveh R. Ghazi * bitmap.c: Change NULL_PTR to NULL or "(rtx*)0". diff --git a/gcc/c-tree.texi b/gcc/c-tree.texi index fe368f2a3e7..27558fe0f72 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 -- 2.11.4.GIT