* recog.c (peephole2_optimize): Use INSN_P.
From-SVN: r34180
This commit is contained in:
parent
4e4017cbe5
commit
887418182a
@ -1,3 +1,7 @@
|
||||
2000-05-25 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
* recog.c (peephole2_optimize): Use INSN_P.
|
||||
|
||||
2000-05-25 Richard Henderson <rth@cygnus.com>
|
||||
|
||||
* ifcvt.c (seq_contains_jump): New.
|
||||
|
@ -2746,7 +2746,7 @@ peephole2_optimize (dump_file)
|
||||
for (insn = bb->end; ; insn = prev)
|
||||
{
|
||||
prev = PREV_INSN (insn);
|
||||
if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
|
||||
if (INSN_P (insn))
|
||||
{
|
||||
rtx try, last_insn;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user