Commit e2cca9be by Matt Kraai

fold-const.c (tree_expr_nonnegative_p): Fix misspelling of "least".

	* fold-const.c (tree_expr_nonnegative_p): Fix misspelling
	of "least".

From-SVN: r67877
parent 0d370a05
......@@ -8027,7 +8027,7 @@ tree_expr_nonnegative_p (t)
&& tree_expr_nonnegative_p (TREE_OPERAND (t, 1));
/* zero_extend(x) + zero_extend(y) is non-negative is x and y are
both unsigned and at atleast 2 bits shorter than the result. */
both unsigned and at least 2 bits shorter than the result. */
if (TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
&& TREE_CODE (TREE_OPERAND (t, 0)) == NOP_EXPR
&& TREE_CODE (TREE_OPERAND (t, 1)) == NOP_EXPR)
......
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