diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-27 14:47:55 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-27 14:47:55 +0000 |
commit | 45498ea14d2f4cf09b4db9acbd3d73585f5dffb4 (patch) | |
tree | 64a1566fa3db7d5ae984e75042d42c81d8226d00 /gcc/regmove.c | |
parent | 8c2e6a918f58eb29f43fcdf736dfab484d4e4d9d (diff) | |
download | gcc-45498ea14d2f4cf09b4db9acbd3d73585f5dffb4.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58583 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/regmove.c')
-rw-r--r-- | gcc/regmove.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/regmove.c b/gcc/regmove.c index 7853e041f89..c39e5cce7b7 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 = ®_NOTES (move_insn); p_insn_notes = ®_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) |