2007-05-28 Daniel Berlin <dberlin@dberlin.org>
* tree-ssa-dce.c (eliminate_unnecessary_stmts): Release LHS SSA
name when we remove it from a call.
From-SVN: r125147
+2007-05-28 Daniel Berlin <dberlin@dberlin.org>
+
+ * tree-ssa-dce.c (eliminate_unnecessary_stmts): Release LHS SSA
+ name when we remove it from a call.
+
2007-05-28 Kazu Hirata <kazu@codesourcery.com>
* targhooks.c (default_narrow_bitfield): Remove.
== SSA_NAME)
&& !TEST_BIT (processed, SSA_NAME_VERSION (name)))
{
+ tree oldlhs = GIMPLE_STMT_OPERAND (t, 0);
something_changed = true;
if (dump_file && (dump_flags & TDF_DETAILS))
{
maybe_clean_or_replace_eh_stmt (t, call);
mark_symbols_for_renaming (call);
pop_stmt_changes (bsi_stmt_ptr (i));
+ release_ssa_name (oldlhs);
}
notice_special_calls (call);
}