diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-10-27 14:47:55 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-10-27 14:47:55 +0000 |
commit | 3eae4643be652fff3b1756f4462e1941da58973d (patch) | |
tree | 64a1566fa3db7d5ae984e75042d42c81d8226d00 /gcc/reload1.c | |
parent | e591c83de733b7de518e12d0298709c48311bad4 (diff) | |
download | gcc-3eae4643be652fff3b1756f4462e1941da58973d.zip gcc-3eae4643be652fff3b1756f4462e1941da58973d.tar.gz gcc-3eae4643be652fff3b1756f4462e1941da58973d.tar.bz2 |
combine.c: Fix comment formatting.
* combine.c: Fix comment formatting.
* loop.c: Likewise.
* real.c: Likewise.
* regclass.c: Likewise.
* regmove.c: Likewise.
* regrename.c: Likewise.
* reg-stack.c: Likewise.
* reload1.c: Likewise.
* reload.c: Likewise.
* reload.h: Likewise.
* unroll.c: Likewise.
From-SVN: r58583
Diffstat (limited to 'gcc/reload1.c')
-rw-r--r-- | gcc/reload1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index b467e25..8d4e000 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -139,7 +139,7 @@ static int reg_reloaded_contents[FIRST_PSEUDO_REGISTER]; when reg_reloaded_valid is set for this register. */ static rtx reg_reloaded_insn[FIRST_PSEUDO_REGISTER]; -/* Indicate if reg_reloaded_insn / reg_reloaded_contents is valid */ +/* Indicate if reg_reloaded_insn / reg_reloaded_contents is valid. */ static HARD_REG_SET reg_reloaded_valid; /* Indicate if the register was dead at the end of the reload. This is only valid if reg_reloaded_contents is set and valid. */ @@ -1497,7 +1497,7 @@ calculate_needs_all_insns (global) && REGNO (SET_SRC (set)) >= FIRST_PSEUDO_REGISTER) { delete_insn (insn); - /* Delete it from the reload chain */ + /* Delete it from the reload chain. */ if (chain->prev) chain->prev->next = next; else |