From e2cca9be4e33f6ffe669568d16e97ea70223fdd9 Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Fri, 13 Jun 2003 04:35:29 +0000 Subject: [PATCH] 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 --- gcc/fold-const.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/fold-const.c b/gcc/fold-const.c index e67f0f65769..c8bbca4a7c8 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -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) -- 2.30.2