Skip to content
Snippets Groups Projects
Commit f4262155 authored by Jerry Quinn's avatar Jerry Quinn Committed by Jerry Quinn
Browse files

c-tree.texi (RETURN_STMT): Change to RETURN_EXPR.

2010-01-03  Jerry Quinn  <jlquinn@optonline.net>

	* doc/c-tree.texi (RETURN_STMT): Change to RETURN_EXPR.  Update
	description of expression operand.

From-SVN: r155604
parent ab1c1187
No related branches found
No related tags found
No related merge requests found
2010-01-03 Jerry Quinn <jlquinn@optonline.net>
* doc/c-tree.texi (RETURN_STMT): Change to RETURN_EXPR. Update
description of expression operand.
2010-01-03 Andrew Jenner <andrew@codesourcery.com> 2010-01-03 Andrew Jenner <andrew@codesourcery.com>
* configure.ac: Add install-html to target_list for Make-hooks. * configure.ac: Add install-html to target_list for Make-hooks.
......
...@@ -1802,11 +1802,13 @@ statement can be obtained with the @code{LABEL_EXPR_LABEL} macro. The ...@@ -1802,11 +1802,13 @@ statement can be obtained with the @code{LABEL_EXPR_LABEL} macro. The
@code{IDENTIFIER_NODE} giving the name of the label can be obtained from @code{IDENTIFIER_NODE} giving the name of the label can be obtained from
the @code{LABEL_DECL} with @code{DECL_NAME}. the @code{LABEL_DECL} with @code{DECL_NAME}.
@item RETURN_STMT @item RETURN_EXPR
Used to represent a @code{return} statement. The @code{RETURN_EXPR} is Used to represent a @code{return} statement. Operand 0 represents the
the expression returned; it will be @code{NULL_TREE} if the statement value to return. It should either be the @code{RESULT_DECL} for the
was just containing function, or a @code{MODIFY_EXPR} or @code{INIT_EXPR}
setting the function's @code{RESULT_DECL}. It will be
@code{NULL_TREE} if the statement was just
@smallexample @smallexample
return; return;
@end smallexample @end smallexample
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment