aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfglayout.c
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2003-07-01 09:17:52 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2003-07-01 09:17:52 +0000
commit5f2fc772a64e920386370f64d6d63ee07cbbdb85 (patch)
tree531c01fa64756756463c89f2a22ff43297319828 /gcc/cfglayout.c
parent5b030314afd5f84d30e79594db48bb76da28e36a (diff)
downloadgcc-5f2fc772a64e920386370f64d6d63ee07cbbdb85.zip
gcc-5f2fc772a64e920386370f64d6d63ee07cbbdb85.tar.gz
gcc-5f2fc772a64e920386370f64d6d63ee07cbbdb85.tar.bz2
rtl.h (emit_line_note_after): Remove.
* rtl.h (emit_line_note_after): Remove. (emit_note_copy_after, emit_note_copy): New. * emit-rtl.c (reorder_insns_with_line_notes): Replace emit_line_note_after with emit_note_copy_after. (emit_insn_after_with_line_notes): Likewise. (emit_line_note_after): Kill. (emit_note_copy_after): New. (emit_note_copy): New. * function.c (emit_return_into_block): Use emit_note_copy_after. (thread_prologue_and_epilogue_insns): Likewise. * integrate.c (expand_inline_function): Use emit_note_copy. (copy_insn_list): Likewise. * unroll.c (copy_loop_body): Likewise. * cfglayout.c (duplicate_insn_chain): Likewise. From-SVN: r68767
Diffstat (limited to 'gcc/cfglayout.c')
-rw-r--r--gcc/cfglayout.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/cfglayout.c b/gcc/cfglayout.c
index 736d888..12cc255 100644
--- a/gcc/cfglayout.c
+++ b/gcc/cfglayout.c
@@ -1008,8 +1008,7 @@ duplicate_insn_chain (rtx from, rtx to)
abort ();
break;
case NOTE_INSN_REPEATED_LINE_NUMBER:
- emit_line_note (NOTE_SOURCE_FILE (insn),
- NOTE_LINE_NUMBER (insn));
+ emit_note_copy (insn);
break;
default:
@@ -1017,8 +1016,7 @@ duplicate_insn_chain (rtx from, rtx to)
abort ();
/* It is possible that no_line_number is set and the note
won't be emitted. */
- emit_line_note (NOTE_SOURCE_FILE (insn),
- NOTE_LINE_NUMBER (insn));
+ emit_note_copy (insn);
}
break;
default: