diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-28 05:03:09 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-28 05:03:09 +0000 |
commit | 1c14a50e12405b4938c6ff3258c37654c3495f51 (patch) | |
tree | fe6f1039398672aa41a8e7ee84c0d75a91f4b324 /gcc/emit-rtl.c | |
parent | 352141aed7157302a8ce0df16a90837a8d94fce4 (diff) | |
download | linaro-gcc-1c14a50e12405b4938c6ff3258c37654c3495f51.tar.gz linaro-gcc-1c14a50e12405b4938c6ff3258c37654c3495f51.tar.bz2 linaro-gcc-1c14a50e12405b4938c6ff3258c37654c3495f51.zip |
* bt-load.c, cfgexpand.c, dwarf2out.c, emit-rtl.c, expr.c,
function.c, global.c, lcm.c, loop-invariant.c, optabs.c,
reorg.c, resource.c, tree-ssa-loop-ivopts.c, value-prof.c: Use
JUMP_P, LABEL_P, REG_P, MEM_P, NONJUMP_INSN_P, and INSN_P
where appropriate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98913 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r-- | gcc/emit-rtl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 3ed2321450f..162d3f301f3 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -2697,7 +2697,7 @@ get_first_nonnote_insn (void) continue; else { - if (GET_CODE (insn) == INSN + if (NONJUMP_INSN_P (insn) && GET_CODE (PATTERN (insn)) == SEQUENCE) insn = XVECEXP (PATTERN (insn), 0, 0); } @@ -2723,7 +2723,7 @@ get_last_nonnote_insn (void) continue; else { - if (GET_CODE (insn) == INSN + if (NONJUMP_INSN_P (insn) && GET_CODE (PATTERN (insn)) == SEQUENCE) insn = XVECEXP (PATTERN (insn), 0, XVECLEN (PATTERN (insn), 0) - 1); |