aboutsummaryrefslogtreecommitdiff
path: root/gcc/regmove.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/regmove.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/regmove.c')
-rw-r--r--gcc/regmove.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/regmove.c b/gcc/regmove.c
index 7853e04..c39e5cc 100644
--- a/gcc/regmove.c
+++ b/gcc/regmove.c
@@ -793,7 +793,7 @@ copy_src_to_dest (insn, src, dest, old_max_uid)
p_move_notes = &REG_NOTES (move_insn);
p_insn_notes = &REG_NOTES (insn);
- /* Move any notes mentioning src to the move instruction */
+ /* Move any notes mentioning src to the move instruction. */
for (link = REG_NOTES (insn); link != NULL_RTX; link = next)
{
next = XEXP (link, 1);
@@ -812,7 +812,7 @@ copy_src_to_dest (insn, src, dest, old_max_uid)
*p_move_notes = NULL_RTX;
*p_insn_notes = NULL_RTX;
- /* Is the insn the head of a basic block? If so extend it */
+ /* Is the insn the head of a basic block? If so extend it. */
insn_uid = INSN_UID (insn);
move_uid = INSN_UID (move_insn);
if (insn_uid < old_max_uid)