Commit b729952b by Zdenek Dvorak Committed by Zdenek Dvorak

tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Remove unreachable code.

	* tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Remove
	unreachable code.

From-SVN: r110426
parent 3cd045d1
2006-01-30 Zdenek Dvorak <dvorakz@suse.cz>
* tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Remove
unreachable code.
2006-01-30 Ulrich Weigand <uweigand@de.ibm.com>
PR target/26018
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment