diff options
author | Andreas Krebbel <Andreas.Krebbel@de.ibm.com> | 2009-11-27 12:00:28 +0000 |
---|---|---|
committer | Andreas Krebbel <krebbel@gcc.gnu.org> | 2009-11-27 12:00:28 +0000 |
commit | 9c517bf37229ba03a468c26eaca9bb5141d57709 (patch) | |
tree | 8d13db1f83c58fd3ee415da11fbe3b64915c1ae7 /gcc/emit-rtl.c | |
parent | f1ed99cda55b3d5691511401fdbc89f935390e41 (diff) | |
download | gcc-9c517bf37229ba03a468c26eaca9bb5141d57709.zip gcc-9c517bf37229ba03a468c26eaca9bb5141d57709.tar.gz gcc-9c517bf37229ba03a468c26eaca9bb5141d57709.tar.bz2 |
emit-rtl.c (next_active_insn, [...]): Correct comment.
2009-11-27 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* emit-rtl.c (next_active_insn, prev_active_insn): Correct
comment.
From-SVN: r154702
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r-- | gcc/emit-rtl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 91212ad..6e1f949 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -3213,8 +3213,8 @@ last_call_insn (void) } /* Find the next insn after INSN that really does something. This routine - does not look inside SEQUENCEs. Until reload has completed, this is the - same as next_real_insn. */ + does not look inside SEQUENCEs. After reload this also skips over + standalone USE and CLOBBER insn. */ int active_insn_p (const_rtx insn) @@ -3240,8 +3240,8 @@ next_active_insn (rtx insn) } /* Find the last insn before INSN that really does something. This routine - does not look inside SEQUENCEs. Until reload has completed, this is the - same as prev_real_insn. */ + does not look inside SEQUENCEs. After reload this also skips over + standalone USE and CLOBBER insn. */ rtx prev_active_insn (rtx insn) |