diff options
author | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-01 09:17:52 +0000 |
---|---|---|
committer | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-01 09:17:52 +0000 |
commit | 2f57e3d9f1ac57399fab63aed63efe9f8acfdcd5 (patch) | |
tree | 531c01fa64756756463c89f2a22ff43297319828 /gcc/rtl.h | |
parent | 92ddaf90ed78dc8b69ed78192f8c0f1baed05a69 (diff) | |
download | gcc-2f57e3d9f1ac57399fab63aed63efe9f8acfdcd5.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68767 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index bba530181ba..de76ec2fa32 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -1528,14 +1528,15 @@ extern rtx emit_call_insn_after_setloc PARAMS ((rtx, rtx, int)); extern rtx emit_barrier_after PARAMS ((rtx)); extern rtx emit_label_after PARAMS ((rtx, rtx)); extern rtx emit_note_after PARAMS ((int, rtx)); -extern rtx emit_line_note_after PARAMS ((const char *, int, rtx)); +extern rtx emit_note_copy_after PARAMS ((rtx, rtx)); extern rtx emit_insn PARAMS ((rtx)); extern rtx emit_jump_insn PARAMS ((rtx)); extern rtx emit_call_insn PARAMS ((rtx)); extern rtx emit_label PARAMS ((rtx)); extern rtx emit_barrier PARAMS ((void)); -extern rtx emit_line_note PARAMS ((const char *, int)); extern rtx emit_note PARAMS ((int)); +extern rtx emit_note_copy PARAMS ((rtx)); +extern rtx emit_line_note PARAMS ((const char *, int)); extern rtx emit_line_note_force PARAMS ((const char *, int)); extern rtx make_insn_raw PARAMS ((rtx)); extern void add_function_usage_to PARAMS ((rtx, rtx)); |