Commit 38c7331a by Mark Mitchell Committed by Mark Mitchell

* semantics.c (do_poplevel): Always initialize the return value.

From-SVN: r28908
parent 723dc442
1999-08-26 Mark Mitchell <mark@codesourcery.com>
* semantics.c (do_poplevel): Always initialize the return value.
1999-08-26 Gavin Romig-Koch <gavin@cygnus.com>
* cp-tree.h (cplus_unsave_expr_now) : Correct return type.
......
......@@ -1073,6 +1073,8 @@ do_poplevel ()
expand_end_bindings (getdecls (), kept_level_p (), 0);
if (stmts_are_full_exprs_p)
t = poplevel (kept_level_p (), 1, 0);
else
t = NULL_TREE;
pop_momentary ();
return t;
}
......
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