diff options
Diffstat (limited to 'gcc/haifa-sched.c')
-rw-r--r-- | gcc/haifa-sched.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/haifa-sched.c b/gcc/haifa-sched.c index d341f37..fe4153d 100644 --- a/gcc/haifa-sched.c +++ b/gcc/haifa-sched.c @@ -1971,7 +1971,11 @@ sched_init (dump_file) && GET_CODE (insn) != CODE_LABEL /* Don't emit a NOTE if it would end up before a BARRIER. */ && GET_CODE (NEXT_INSN (insn)) != BARRIER)) - emit_note_after (NOTE_INSN_DELETED, BLOCK_END (n_basic_blocks - 1)); + { + emit_note_after (NOTE_INSN_DELETED, BLOCK_END (n_basic_blocks - 1)); + /* Make insn to appear outside BB. */ + BLOCK_END (n_basic_blocks - 1) = PREV_INSN (BLOCK_END (n_basic_blocks - 1)); + } /* Compute INSN_REG_WEIGHT for all blocks. We must do this before removing death notes. */ |