aboutsummaryrefslogtreecommitdiff
path: root/gcc/reload1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/reload1.c')
-rw-r--r--gcc/reload1.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c
index 3ff2b45..e7da78b 100644
--- a/gcc/reload1.c
+++ b/gcc/reload1.c
@@ -1518,7 +1518,7 @@ static void
order_regs_for_reload (chain)
struct insn_chain *chain;
{
- register int i, j;
+ int i;
HARD_REG_SET used_by_pseudos;
HARD_REG_SET used_by_pseudos2;
@@ -1541,14 +1541,14 @@ order_regs_for_reload (chain)
CLEAR_REG_SET (&pseudos_counted);
EXECUTE_IF_SET_IN_REG_SET
- (&chain->live_throughout, FIRST_PSEUDO_REGISTER, j,
+ (&chain->live_throughout, FIRST_PSEUDO_REGISTER, i,
{
- count_pseudo (j);
+ count_pseudo (i);
});
EXECUTE_IF_SET_IN_REG_SET
- (&chain->dead_or_set, FIRST_PSEUDO_REGISTER, j,
+ (&chain->dead_or_set, FIRST_PSEUDO_REGISTER, i,
{
- count_pseudo (j);
+ count_pseudo (i);
});
CLEAR_REG_SET (&pseudos_counted);
}