diff options
author | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-31 02:55:28 +0000 |
---|---|---|
committer | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-31 02:55:28 +0000 |
commit | 15c4cb614402964a4cd3ec9e9d3170b95318d303 (patch) | |
tree | d8ccae3b763499f1e24c6a99e1d85a5732597ff8 /gcc/tree-ssa-dce.c | |
parent | 86b779d20d59de419e6782fbbec6d7dbbf3f8200 (diff) | |
download | gcc-15c4cb614402964a4cd3ec9e9d3170b95318d303.tar.gz |
* tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Remove
unreachable code.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@110426 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-dce.c')
-rw-r--r-- | gcc/tree-ssa-dce.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/gcc/tree-ssa-dce.c b/gcc/tree-ssa-dce.c index c8b98d357c8..1b25f271ab9 100644 --- a/gcc/tree-ssa-dce.c +++ b/gcc/tree-ssa-dce.c @@ -285,8 +285,7 @@ static void mark_stmt_if_obviously_necessary (tree stmt, bool aggressive) { stmt_ann_t ann; - tree op, def; - ssa_op_iter iter; + tree op; /* With non-call exceptions, we have to assume that all statements could throw. If a statement may throw, it is inherently necessary. */ @@ -372,14 +371,6 @@ mark_stmt_if_obviously_necessary (tree stmt, bool aggressive) return; } - FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_DEF) - { - if (is_global_var (SSA_NAME_VAR (def))) - { - mark_stmt_necessary (stmt, true); - return; - } - } if (is_hidden_global_store (stmt)) { mark_stmt_necessary (stmt, true); |