Commit 284cbef5 by Jeff Law Committed by Jeff Law

fold-const.c (tree_expr_nonzero_p): Fix thinko.


	* fold-const.c (tree_expr_nonzero_p): Fix thinko.

From-SVN: r110849
parent 61864771
2006-02-10 Jeff Law <law@redhat.com>
* fold-const.c (tree_expr_nonzero_p): Fix thinko.
PR tree-optimization/26213
* tree-ssa-threadedge.c (simplify_control_stmt_condition): Do not
loop trying to follow SSA_NAME_VALUE chains.
......
......@@ -11256,7 +11256,7 @@ tree_expr_nonzero_p (tree t)
tree inner_type = TREE_TYPE (TREE_OPERAND (t, 0));
tree outer_type = TREE_TYPE (t);
return (TYPE_PRECISION (inner_type) >= TYPE_PRECISION (outer_type)
return (TYPE_PRECISION (outer_type) >= TYPE_PRECISION (inner_type)
&& tree_expr_nonzero_p (TREE_OPERAND (t, 0)));
}
break;
......
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