aboutsummaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-11-01 08:53:40 +0000
committerJeff Law <law@gcc.gnu.org>1999-11-01 01:53:40 -0700
commite5de8c72837aa699f506820ab4020e2b7bf39437 (patch)
tree168946748c102e51a5721ea8afc32a907af25fc2 /gcc/flow.c
parentddc8c96c235e13b9285e6c1bb0dcc197d6c7995e (diff)
downloadgcc-e5de8c72837aa699f506820ab4020e2b7bf39437.zip
gcc-e5de8c72837aa699f506820ab4020e2b7bf39437.tar.gz
gcc-e5de8c72837aa699f506820ab4020e2b7bf39437.tar.bz2
* flow.c (calculate_global_regs_live): Fix thinko.
From-SVN: r30316
Diffstat (limited to 'gcc/flow.c')
-rw-r--r--gcc/flow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index 19d50b0..d88faa7 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -3126,7 +3126,7 @@ calculate_global_regs_live (blocks_in, blocks_out, flags)
/* Rescan the block insn by insn to turn (a copy of) live_at_end
into live_at_start. */
propagate_block (new_live_at_end, bb->head, bb->end,
- bb->local_set, i, flags);
+ bb->local_set, bb->index, flags);
/* If live_at start didn't change, no need to go farther. */
if (REG_SET_EQUAL_P (bb->global_live_at_start, new_live_at_end))