diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-13 22:57:14 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-13 22:57:14 +0000 |
commit | be7d62e82acd85958f65bebee5b8d34b8d3903df (patch) | |
tree | 5d16f5cf01a3fe7f3137e233833bc69301235e56 | |
parent | 23d5b88f16145d3a563523d3dcf05a74e3a49f45 (diff) | |
download | gcc-be7d62e82acd85958f65bebee5b8d34b8d3903df.tar.gz |
* basic-block.h: Remove the prototype for
free_basic_block_vars.
* cfglayout.h: Remove the prototype for
insn_locators_initialize.
* tree.h: Remove the prototype for emit_line_note.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125686 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/basic-block.h | 2 | ||||
-rw-r--r-- | gcc/cfglayout.h | 1 | ||||
-rw-r--r-- | gcc/tree.h | 3 |
4 files changed, 8 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 59247af9cc8..dbf998ab7c0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2007-06-13 Kazu Hirata <kazu@codesourcery.com> + + * basic-block.h: Remove the prototype for + free_basic_block_vars. + * cfglayout.h: Remove the prototype for + insn_locators_initialize. + * tree.h: Remove the prototype for emit_line_note. + 2007-06-13 Eric Christopher <echristo@apple.com> * config/i386/i386.c (override_options): If we've specified diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 75bba8121e0..71396605e43 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -477,8 +477,6 @@ extern void compute_bb_for_insn (void); extern unsigned int free_bb_for_insn (void); extern void update_bb_for_insn (basic_block); -extern void free_basic_block_vars (void); - extern void insert_insn_on_edge (rtx, edge); basic_block split_edge_and_insert (edge, rtx); diff --git a/gcc/cfglayout.h b/gcc/cfglayout.h index e2c00ad2ab3..48e30f95e71 100644 --- a/gcc/cfglayout.h +++ b/gcc/cfglayout.h @@ -28,7 +28,6 @@ extern GTY(()) rtx cfg_layout_function_header; extern void cfg_layout_initialize (unsigned int); extern void cfg_layout_finalize (void); -extern unsigned int insn_locators_initialize (void); extern void reemit_insn_block_notes (void); extern bool can_copy_bbs_p (basic_block *, unsigned); extern void copy_bbs (basic_block *, unsigned, basic_block *, diff --git a/gcc/tree.h b/gcc/tree.h index aefc00ee33a..ab6d5ff60f0 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -4659,9 +4659,6 @@ extern bool debug_find_tree (tree, tree); extern tree unsave_expr_now (tree); extern tree build_duplicate_type (tree); -/* In emit-rtl.c */ -extern rtx emit_line_note (location_t); - /* In calls.c */ /* Nonzero if this is a call to a function whose return value depends |