diff options
Diffstat (limited to 'gcc/config/bfin/bfin.c')
-rw-r--r-- | gcc/config/bfin/bfin.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/config/bfin/bfin.c b/gcc/config/bfin/bfin.c index 97c1d21682d..a2d22c1c26f 100644 --- a/gcc/config/bfin/bfin.c +++ b/gcc/config/bfin/bfin.c @@ -3887,8 +3887,7 @@ gen_one_bundle (rtx slot[3]) rtx t = NEXT_INSN (slot[0]); while (t != slot[1]) { - if (GET_CODE (t) != NOTE - || NOTE_KIND (t) != NOTE_INSN_DELETED) + if (! NOTE_P (t) || NOTE_KIND (t) != NOTE_INSN_DELETED) return false; t = NEXT_INSN (t); } @@ -3898,8 +3897,7 @@ gen_one_bundle (rtx slot[3]) rtx t = NEXT_INSN (slot[1]); while (t != slot[2]) { - if (GET_CODE (t) != NOTE - || NOTE_KIND (t) != NOTE_INSN_DELETED) + if (! NOTE_P (t) || NOTE_KIND (t) != NOTE_INSN_DELETED) return false; t = NEXT_INSN (t); } |