Commit 26612c79 by Mark Mitchell Committed by Mark Mitchell

tree.c (cplus_unsave_expr_now): Don't return a value.

1999-08-26  Mark Mitchell  <mark@codesourcery.com>

	* tree.c (cplus_unsave_expr_now): Don't return a value.

From-SVN: r28909
parent 38c7331a
1999-08-26 Mark Mitchell <mark@codesourcery.com>
* tree.c (cplus_unsave_expr_now): Don't return a value.
* semantics.c (do_poplevel): Always initialize the return value.
1999-08-26 Gavin Romig-Koch <gavin@cygnus.com>
......
......@@ -2871,7 +2871,7 @@ cplus_unsave_expr_now (expr)
tree expr;
{
if (expr == NULL)
return expr;
return;
else if (TREE_CODE (expr) == AGGR_INIT_EXPR)
{
......@@ -2887,10 +2887,10 @@ cplus_unsave_expr_now (expr)
}
}
unsave_expr_now (TREE_OPERAND (expr,2));
return expr;
return;
}
else
return expr;
return;
}
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