diff options
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/function.c b/gcc/function.c index 7004793..996d0ab 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -3567,7 +3567,7 @@ reorder_blocks_1 (rtx insns, tree current_block, VEC(tree,heap) **p_block_stack) { if (NOTE_P (insn)) { - if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG) + if (NOTE_KIND (insn) == NOTE_INSN_BLOCK_BEG) { tree block = NOTE_BLOCK (insn); tree origin; @@ -3608,7 +3608,7 @@ reorder_blocks_1 (rtx insns, tree current_block, VEC(tree,heap) **p_block_stack) } VEC_safe_push (tree, heap, *p_block_stack, block); } - else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END) + else if (NOTE_KIND (insn) == NOTE_INSN_BLOCK_END) { NOTE_BLOCK (insn) = VEC_pop (tree, *p_block_stack); BLOCK_SUBBLOCKS (current_block) @@ -5237,7 +5237,7 @@ epilogue_done: { next = NEXT_INSN (insn); if (NOTE_P (insn) - && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_BEG)) + && (NOTE_KIND (insn) == NOTE_INSN_FUNCTION_BEG)) reorder_insns (insn, insn, PREV_INSN (epilogue_end)); } } @@ -5265,7 +5265,7 @@ reposition_prologue_and_epilogue_notes (rtx f ATTRIBUTE_UNUSED) { if (NOTE_P (insn)) { - if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_PROLOGUE_END) + if (NOTE_KIND (insn) == NOTE_INSN_PROLOGUE_END) note = insn; } else if (contains (insn, &prologue)) @@ -5284,7 +5284,7 @@ reposition_prologue_and_epilogue_notes (rtx f ATTRIBUTE_UNUSED) { for (note = last; (note = NEXT_INSN (note));) if (NOTE_P (note) - && NOTE_LINE_NUMBER (note) == NOTE_INSN_PROLOGUE_END) + && NOTE_KIND (note) == NOTE_INSN_PROLOGUE_END) break; } @@ -5306,7 +5306,7 @@ reposition_prologue_and_epilogue_notes (rtx f ATTRIBUTE_UNUSED) { if (NOTE_P (insn)) { - if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_EPILOGUE_BEG) + if (NOTE_KIND (insn) == NOTE_INSN_EPILOGUE_BEG) note = insn; } else if (contains (insn, &epilogue)) @@ -5325,7 +5325,7 @@ reposition_prologue_and_epilogue_notes (rtx f ATTRIBUTE_UNUSED) { for (note = insn; (note = PREV_INSN (note));) if (NOTE_P (note) - && NOTE_LINE_NUMBER (note) == NOTE_INSN_EPILOGUE_BEG) + && NOTE_KIND (note) == NOTE_INSN_EPILOGUE_BEG) break; } |