aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Kraai <kraai@gcc.gnu.org>2003-06-13 04:35:29 +0000
committerMatt Kraai <kraai@gcc.gnu.org>2003-06-13 04:35:29 +0000
commite2cca9be4e33f6ffe669568d16e97ea70223fdd9 (patch)
tree8f3251b89431de8506a80e9d8217a224fbc41117
parent0d370a05d3812456983ca78a10a885fec1731784 (diff)
downloadgcc-e2cca9be4e33f6ffe669568d16e97ea70223fdd9.zip
gcc-e2cca9be4e33f6ffe669568d16e97ea70223fdd9.tar.gz
gcc-e2cca9be4e33f6ffe669568d16e97ea70223fdd9.tar.bz2
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
-rw-r--r--gcc/fold-const.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c
index e67f0f6..c8bbca4 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)