aboutsummaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2002-10-27 14:47:55 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-10-27 14:47:55 +0000
commit3eae4643be652fff3b1756f4462e1941da58973d (patch)
tree64a1566fa3db7d5ae984e75042d42c81d8226d00 /gcc/combine.c
parente591c83de733b7de518e12d0298709c48311bad4 (diff)
downloadgcc-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/combine.c')
-rw-r--r--gcc/combine.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/combine.c b/gcc/combine.c
index ce97adf..d6dfdf6 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -11913,7 +11913,7 @@ mark_used_regs_combine (x)
{
unsigned int endregno, r;
- /* None of this applies to the stack, frame or arg pointers */
+ /* None of this applies to the stack, frame or arg pointers. */
if (regno == STACK_POINTER_REGNUM
#if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
|| regno == HARD_FRAME_POINTER_REGNUM
@@ -12021,7 +12021,7 @@ move_deaths (x, maybe_kill_insn, from_cuid, to_insn, pnotes)
rtx where_dead = reg_last_death[regno];
rtx before_dead, after_dead;
- /* Don't move the register if it gets killed in between from and to */
+ /* Don't move the register if it gets killed in between from and to. */
if (maybe_kill_insn && reg_set_p (x, maybe_kill_insn)
&& ! reg_referenced_p (x, maybe_kill_insn))
return;