diff options
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2405,6 +2405,9 @@ commit_one_edge_insertion (e) if (GET_CODE (bb->end) == JUMP_INSN) { before = bb->end; + while (GET_CODE (PREV_INSN (before)) == NOTE + && NOTE_LINE_NUMBER (PREV_INSN (before)) == NOTE_INSN_LOOP_BEG) + before = PREV_INSN (before); } else { |