Commit be91309c by Mark Mitchell Committed by Mark Mitchell

decl.c (start_function): Clear last_dtor_insn and last_parm_cleanup_insn.

	* decl.c (start_function): Clear last_dtor_insn and
	last_parm_cleanup_insn.
	(push_cp_function_context): Just copy over a little of
	the old context, not all of it.

From-SVN: r29213
parent 2e769ad0
1999-09-08 Mark Mitchell <mark@codesourcery.com>
* decl.c (start_function): Clear last_dtor_insn and
last_parm_cleanup_insn.
(push_cp_function_context): Just copy over a little of
the old context, not all of it.
* cp-tree.h (copy_to_permanent): Remove.
(permanent_p): Likewise.
* decl.c (building_typename_type): Don't use copy_to_permanent.
......
......@@ -12903,6 +12903,8 @@ start_function (declspecs, declarator, attrs, pre_parsed_p)
current_function_assigns_this = 0;
current_function_just_assigned_this = 0;
current_function_parms_stored = 0;
last_dtor_insn = NULL_RTX;
last_parm_cleanup_insn = NULL_RTX;
original_result_rtx = NULL_RTX;
base_init_expr = NULL_TREE;
current_base_init_list = NULL_TREE;
......@@ -14483,12 +14485,10 @@ push_cp_function_context (f)
{
struct language_function *p
= ((struct language_function *)
xmalloc (sizeof (struct language_function)));
xcalloc (1, sizeof (struct language_function)));
f->language = p;
if (f->next)
*p = *f->next->language;
else
bzero (p, sizeof (struct language_function));
p->binding_level = f->next->language->binding_level;
/* For now, we always assume we're expanding all the way to RTL
unless we're explicitly doing otherwise. */
......
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