diff options
author | Andrew MacLeod <amacleod@redhat.com> | 2013-10-02 17:57:54 +0000 |
---|---|---|
committer | Andrew Macleod <amacleod@gcc.gnu.org> | 2013-10-02 17:57:54 +0000 |
commit | 3d9c733eb19c1fa07f0adecc083a4c2a053fd903 (patch) | |
tree | 4e565c339cd910e920e36af879ee13b02dd89c3d /gcc/tree-into-ssa.h | |
parent | cc1a9ac808c9f04cb0deeff138b5da114f113c76 (diff) | |
download | gcc-3d9c733eb19c1fa07f0adecc083a4c2a053fd903.tar.gz |
tree-flow.h: Remove some prototypes.
* tree-flow.h: Remove some prototypes.
* tree-ssa-dce.c (mark_virtual_operand_for_renaming,
mark_virtual_phi_result_for_renaming): Move to tree-into-ssa.c.
* tree-into-ssa.c (mark_virtual_operand_for_renaming,
mark_virtual_phi_result_for_renaming): Relocate here.
* tree-into-ssa.h: Add prototypes.
* tree-ssa-phiopt.c: (tree_ssa_phiopt_worker) Use
single_pred_before_succ_order.
(blocks_in_phiopt_order): Rename and move to cfganal.c.
(nonfreeing_call_p) Move to gimple.c.
* cfganal.c (single_pred_before_succ_order): Move and renamed from
tree-ssa-phiopt.c.
* basic-block.h (single_pred_before_succ_order): Add prototype.
* gimple.c (nonfreeing_call_p): Relocate here.
* gimple.h: Add prototype.
* tree-ssa-ifcombine.c: Include tree-ssa-phiopt.h.
* tree-ssa-dom.h: New file. Relocate prototypes here.
* tree-ssa.h: Include tree-ssa-dom.h.
From-SVN: r203122
Diffstat (limited to 'gcc/tree-into-ssa.h')
-rw-r--r-- | gcc/tree-into-ssa.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/tree-into-ssa.h b/gcc/tree-into-ssa.h index 0c44f046697..c87fb63c351 100644 --- a/gcc/tree-into-ssa.h +++ b/gcc/tree-into-ssa.h @@ -25,6 +25,8 @@ extern void set_current_def (tree, tree); void delete_update_ssa (void); tree create_new_def_for (tree, gimple, def_operand_p); void mark_virtual_operands_for_renaming (struct function *); +void mark_virtual_operand_for_renaming (tree); +void mark_virtual_phi_result_for_renaming (gimple); bool need_ssa_update_p (struct function *); bool name_registered_for_update_p (tree); void release_ssa_name_after_update_ssa (tree); |