diff options
Diffstat (limited to 'gcc/reorg.c')
-rw-r--r-- | gcc/reorg.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/reorg.c b/gcc/reorg.c index 51a70dc9bfb..82b54e2a14e 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -3700,14 +3700,14 @@ dbr_schedule (rtx first) { rtx target; - if (JUMP_P (insn)) - INSN_ANNULLED_BRANCH_P (insn) = 0; - INSN_FROM_TARGET_P (insn) = 0; - /* Skip vector tables. We can't get attributes for them. */ if (JUMP_TABLE_DATA_P (insn)) continue; + if (JUMP_P (insn)) + INSN_ANNULLED_BRANCH_P (insn) = 0; + INSN_FROM_TARGET_P (insn) = 0; + if (num_delay_slots (insn) > 0) obstack_ptr_grow (&unfilled_slots_obstack, insn); |