Commit 07dd196a by Nathan Sidwell Committed by Nathan Sidwell

* c-tree.texi (USING_STMT): Document.

From-SVN: r41726
parent 9da99f7d
2001-05-01 Nathan Sidwell <nathan@codesourcery.com>
* c-tree.texi (USING_STMT): Document.
2001-05-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 2001-05-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* bitmap.c: Change NULL_PTR to NULL or "(rtx*)0". * bitmap.c: Change NULL_PTR to NULL or "(rtx*)0".
......
...@@ -1373,6 +1373,7 @@ This predicate holds if the function an overloaded ...@@ -1373,6 +1373,7 @@ This predicate holds if the function an overloaded
@findex TRY_HANDLERS @findex TRY_HANDLERS
@findex HANDLER_PARMS @findex HANDLER_PARMS
@findex HANDLER_BODY @findex HANDLER_BODY
@findex USING_STMT
@tindex WHILE_STMT @tindex WHILE_STMT
@findex WHILE_BODY @findex WHILE_BODY
@findex WHILE_COND @findex WHILE_COND
...@@ -1688,6 +1689,12 @@ the try block. It must rethrow the exception after executing that code. ...@@ -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, And, if an exception is thrown while the expression is executing,
@code{terminate} must be called. @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 @item WHILE_STMT
Used to represent a @code{while} loop. The @code{WHILE_COND} is the Used to represent a @code{while} loop. The @code{WHILE_COND} is the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment