diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-08-12 23:40:53 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-08-12 23:40:53 +0000 |
commit | dc297297ea56b13efad4bcddab5359fae7d819c1 (patch) | |
tree | f8425171fd5a2b92510be46813648f3e6a1d9f61 /gcc/regmove.c | |
parent | f0d1c3bd39e6379bf2c1b53071c62baeabeb2174 (diff) | |
download | gcc-dc297297ea56b13efad4bcddab5359fae7d819c1.zip gcc-dc297297ea56b13efad4bcddab5359fae7d819c1.tar.gz gcc-dc297297ea56b13efad4bcddab5359fae7d819c1.tar.bz2 |
gcc.c: Fix comment formatting.
* gcc.c: Fix comment formatting.
* gccspec.c: Likewise.
* gcov.c: Likewise.
* gcse.c: Likewise.
* genemit.c: Likewise.
* gengenrtl.c: Likewise.
* genrecog.c: Likewise.
* gensupport.c: Likewise.
* ggc-page.c: Likewise.
* global.c: Likewise.
* graph.c: Likewise.
* ifcvt.c: Likewise.
* integrate.c: Likewise.
* lcm.c: Likewise.
* libgcc2.c: Likewise.
* loop.c: Likewise.
* mbchar.c: Likewise.
* optabs.c: Likewise.
* predict.c: Likewise.
* prefix.c: Likewise.
* profile.c: Likewise.
* protoize.c: Likewise.
* real.c: Likewise.
* recog.c: Likewise.
* regclass.c: Likewise.
* regmove.c: Likewise.
* reg-stack.c: Likewise.
* reload1.c: Likewise.
* resource.c: Likewise.
* rtlanal.c: Likewise.
* rtl.c: Likewise.
From-SVN: r44837
Diffstat (limited to 'gcc/regmove.c')
-rw-r--r-- | gcc/regmove.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/regmove.c b/gcc/regmove.c index ac1675e..484c391 100644 --- a/gcc/regmove.c +++ b/gcc/regmove.c @@ -437,7 +437,7 @@ optimize_reg_copy_1 (insn, dest, src) int sregno = REGNO (src); int dregno = REGNO (dest); - /* We don't want to mess with hard regs if register classes are small. */ + /* We don't want to mess with hard regs if register classes are small. */ if (sregno == dregno || (SMALL_REGISTER_CLASSES && (sregno < FIRST_PSEUDO_REGISTER @@ -1225,7 +1225,7 @@ regmove_optimize (f, nregs, regmove_dump_file) if (recog_data.operand[match_no] != SET_DEST (set)) continue; - /* If the operands already match, then there is nothing to do. */ + /* If the operands already match, then there is nothing to do. */ if (operands_match_p (src, dst)) continue; @@ -1304,7 +1304,7 @@ regmove_optimize (f, nregs, regmove_dump_file) || RTX_UNCHANGING_P (dst)) continue; - /* If the operands already match, then there is nothing to do. */ + /* If the operands already match, then there is nothing to do. */ if (operands_match_p (src, dst)) continue; @@ -2007,7 +2007,7 @@ fixup_match_1 (insn, set, src, src_subreg, dst, backward, operand_number, { /* ??? We can't scan past the end of a basic block without updating the register lifetime info - (REG_DEAD/basic_block_live_at_start). */ + (REG_DEAD/basic_block_live_at_start). */ if (perhaps_ends_bb_p (q)) break; else if (! INSN_P (q)) |