* recog.c (peephole2_optimize): Use INSN_P.

From-SVN: r34180
This commit is contained in:
Mark Mitchell 2000-05-25 23:59:45 +00:00 committed by Mark Mitchell
parent 4e4017cbe5
commit 887418182a
2 changed files with 5 additions and 1 deletions

View File

@ -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.

View File

@ -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;