diff options
author | Richard Guenther <rguenther@suse.de> | 2012-05-18 10:19:22 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-05-18 10:19:22 +0000 |
commit | f9a21e134266e384f0bb40378621b64994b27daa (patch) | |
tree | ebb7c822a0d81dbb1f9bbea1a4a7f8724e1cab42 /gcc/tree-dfa.c | |
parent | 99aea9436dc454f679fb8766539c90ea4558454a (diff) | |
download | gcc-f9a21e134266e384f0bb40378621b64994b27daa.zip gcc-f9a21e134266e384f0bb40378621b64994b27daa.tar.gz gcc-f9a21e134266e384f0bb40378621b64994b27daa.tar.bz2 |
tree-flow.h (mark_symbols_for_renaming): Remove.
2012-05-18 Richard Guenther <rguenther@suse.de>
* tree-flow.h (mark_symbols_for_renaming): Remove.
* tree-dfa.c (mark_symbols_for_renaming): Likewise.
* tree-inline.c (copy_edges_for_bb): Do not mark symbols for
renaming.
(copy_debug_stmt): Likewise.
(expand_call_inline): Likewise.
(declare_return_variable): Mark the return variable for renaming
if necessary.
From-SVN: r187650
Diffstat (limited to 'gcc/tree-dfa.c')
-rw-r--r-- | gcc/tree-dfa.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc/tree-dfa.c b/gcc/tree-dfa.c index d588b66..007b819 100644 --- a/gcc/tree-dfa.c +++ b/gcc/tree-dfa.c @@ -624,23 +624,6 @@ remove_referenced_var (tree var) } -/* Mark all the naked symbols in STMT for SSA renaming. */ - -void -mark_symbols_for_renaming (gimple stmt) -{ - tree op; - ssa_op_iter iter; - - update_stmt (stmt); - - /* Mark all the operands for renaming. */ - FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_ALL_OPERANDS) - if (DECL_P (op)) - mark_sym_for_renaming (op); -} - - /* If EXP is a handled component reference for a structure, return the base variable. The access range is delimited by bit positions *POFFSET and *POFFSET + *PMAX_SIZE. The access size is *PSIZE bits. If either |