tree-ssa-live.c (create_ssa_var_map, [...]): Remove local variable snn.

* tree-ssa-live.c (create_ssa_var_map,
	calculate_live_on_entry): Remove local variable snn.

From-SVN: r96348
This commit is contained in:
Kazu Hirata 2005-03-12 18:38:17 +00:00 committed by Kazu Hirata
parent fb2a57478d
commit f39b4c073a
2 changed files with 3 additions and 4 deletions

View File

@ -41,6 +41,9 @@
* tree-inline.c (expand_call_inline): Remove local variable
decl.
* tree-ssa-live.c (create_ssa_var_map,
calculate_live_on_entry): Remove local variable snn.
2005-03-12 Geoffrey Keating <geoffk@apple.com>
* c-lex.c (c_lex_with_flags): Add parameter to call to

View File

@ -323,7 +323,6 @@ create_ssa_var_map (int flags)
basic_block bb;
tree dest, use;
tree stmt;
stmt_ann_t ann;
var_map map;
ssa_op_iter iter;
#ifdef ENABLE_CHECKING
@ -369,7 +368,6 @@ create_ssa_var_map (int flags)
{
stmt = bsi_stmt (bsi);
get_stmt_operands (stmt);
ann = stmt_ann (stmt);
/* Register USE and DEF operands in each statement. */
FOR_EACH_SSA_TREE_OPERAND (use , stmt, iter, SSA_OP_USE)
@ -565,7 +563,6 @@ calculate_live_on_entry (var_map map)
edge e;
varray_type stack;
block_stmt_iterator bsi;
stmt_ann_t ann;
ssa_op_iter iter;
bitmap_iterator bi;
#ifdef ENABLE_CHECKING
@ -616,7 +613,6 @@ calculate_live_on_entry (var_map map)
{
stmt = bsi_stmt (bsi);
get_stmt_operands (stmt);
ann = stmt_ann (stmt);
FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_USE)
{