diff options
author | amacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-10-02 13:19:29 +0000 |
---|---|---|
committer | amacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-10-02 13:19:29 +0000 |
commit | 0d9585ca35b919263b973afb371f0eda04857159 (patch) | |
tree | 375ad6b99eeeb983ea0bb3b3219f6c281da0b899 /gcc/tree-into-ssa.c | |
parent | 6da7e1105569fc756baf51b0b4bd53eda8e2b338 (diff) | |
download | gcc-0d9585ca35b919263b973afb371f0eda04857159.tar.gz |
* tree-flow.h: Include new .h files. Move prototypes.
* tree-cfgcleanup.h: New file. Add prototypes from tree-flow.h.
* tree-dfa.h: New File. Add prototypes from tree-flow.h.
(get_addr_base_and_unit_offset_1) Move from tree-flow-inline.h.
* tree-pretty-print.h: Add prototypes from tree-flow.h.
* tree-into-ssa.h: New File. Add prototypes from tree-flow.h.
({debug|dump}*): Move debugging prototypes out of tree-into-ssa.c.
* tree-into-ssa.c ({debug|dump}*): Move prototypes to header file.
* tree.h (get_ref_base_and_extent): Move prototype out.
* tree-flow-inline.h (get_addr_base_and_unit_offset_1): Move to
tree-dfa.h.
* gimple-low.h: New File. Add prototypes from tree-flow.h.
* gimple-low.c (try_catch_may_fallthru, block_may_fallthru): Move to...
* tree.c (try_catch_may_fallthru, block_may_fallthru): Here.
* tree-scalar-evolution.c: Include tree.h.
* sese.c: Include tree.h.
* dumpfile.c: Move gimple-pretty-print.h include after tree.h.
* dwarf2out.c: Include tree-dfa.h.
* tree-chrec.c: Include tree.h.
* tree-data-ref.c: Include tree.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@203113 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-into-ssa.c')
-rw-r--r-- | gcc/tree-into-ssa.c | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/gcc/tree-into-ssa.c b/gcc/tree-into-ssa.c index c1da5e4fcbb..2f5ac69251e 100644 --- a/gcc/tree-into-ssa.c +++ b/gcc/tree-into-ssa.c @@ -39,6 +39,7 @@ along with GCC; see the file COPYING3. If not see #include "domwalk.h" #include "params.h" #include "diagnostic-core.h" +#include "tree-into-ssa.h" /* This file builds the SSA form for a function as described in: @@ -253,27 +254,6 @@ enum rewrite_mode { REWRITE_UPDATE }; - - - -/* Prototypes for debugging functions. */ -extern void dump_tree_ssa (FILE *); -extern void debug_tree_ssa (void); -extern void debug_def_blocks (void); -extern void dump_tree_ssa_stats (FILE *); -extern void debug_tree_ssa_stats (void); -extern void dump_update_ssa (FILE *); -extern void debug_update_ssa (void); -extern void dump_names_replaced_by (FILE *, tree); -extern void debug_names_replaced_by (tree); -extern void dump_var_infos (FILE *); -extern void debug_var_infos (void); -extern void dump_defs_stack (FILE *, int); -extern void debug_defs_stack (int); -extern void dump_currdefs (FILE *); -extern void debug_currdefs (void); - - /* The set of symbols we ought to re-write into SSA form in update_ssa. */ static bitmap symbols_to_rename_set; static vec<tree> symbols_to_rename; |