diff options
Diffstat (limited to 'gcc/recog.c')
-rw-r--r-- | gcc/recog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/recog.c b/gcc/recog.c index e079b7e..9bbd10b 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -2626,7 +2626,7 @@ split_all_insns (upd_life) /* Can't use `next_real_insn' because that might go across CODE_LABELS and short-out basic blocks. */ next = NEXT_INSN (insn); - if (GET_CODE (insn) != INSN) + if (! INSN_P (insn)) ; /* Don't split no-op move insns. These should silently |