mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-31 06:54:42 +08:00
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:
parent
fb2a57478d
commit
f39b4c073a
@ -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
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user