aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-parse.in
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/c-parse.in')
-rw-r--r--gcc/c-parse.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-parse.in b/gcc/c-parse.in
index ce8829a..b7acb71 100644
--- a/gcc/c-parse.in
+++ b/gcc/c-parse.in
@@ -2242,9 +2242,9 @@ stmt:
else
add_stmt (build_continue_stmt ()); }
| RETURN ';'
- { stmt_count++; c_expand_return (NULL_TREE); }
+ { stmt_count++; c_finish_return (NULL_TREE); }
| RETURN expr ';'
- { stmt_count++; c_expand_return ($2); }
+ { stmt_count++; c_finish_return ($2); }
| asm_stmt
| GOTO identifier ';'
{ tree decl;