diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-07-23 22:41:10 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-07-23 22:41:10 +0000 |
commit | 82efa2e52463ab63a7c9d3bb975aa1b6750a29be (patch) | |
tree | 4cabf18b40aeec19a5f95458b2cb4bfc7ebe5cde /gcc/reload.c | |
parent | ba412630aefc6423cb7c80fd28356df3abad2e11 (diff) | |
download | gcc-82efa2e52463ab63a7c9d3bb975aa1b6750a29be.zip gcc-82efa2e52463ab63a7c9d3bb975aa1b6750a29be.tar.gz gcc-82efa2e52463ab63a7c9d3bb975aa1b6750a29be.tar.bz2 |
* reload.c: Fix comment typos.
From-SVN: r44284
Diffstat (limited to 'gcc/reload.c')
-rw-r--r-- | gcc/reload.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/reload.c b/gcc/reload.c index 0955ec8..9e5f9f3e 100644 --- a/gcc/reload.c +++ b/gcc/reload.c @@ -2776,7 +2776,7 @@ find_reloads (insn, replace, ind_levels, live_known, reload_reg_p) register char *p = constraints[i]; register int win = 0; int did_match = 0; - /* 0 => this operand can be reloaded somehow for this alternative */ + /* 0 => this operand can be reloaded somehow for this alternative. */ int badop = 1; /* 0 => this operand can be reloaded if the alternative allows regs. */ int winreg = 0; @@ -3187,7 +3187,7 @@ find_reloads (insn, replace, ind_levels, live_known, reload_reg_p) || (REGNO (operand) >= FIRST_PSEUDO_REGISTER && reg_renumber[REGNO (operand)] < 0))) win = 1; - /* Drop through into 'r' case */ + /* Drop through into 'r' case. */ case 'r': this_alternative[i] @@ -4536,7 +4536,7 @@ find_reloads_address (mode, memrefloc, ad, loc, opnum, type, ind_levels, insn) regno = REGNO (ad); /* If the register is equivalent to an invariant expression, substitute - the invariant, and eliminate any eliminable register references. */ + the invariant, and eliminate any eliminable register references. */ tem = reg_equiv_constant[regno]; if (tem != 0 && (tem = eliminate_regs (tem, mode, insn)) |