]> gcc.gnu.org Git - gcc.git/commitdiff
fold-const.c (tree_expr_nonnegative_p): Fix misspelling of "least".
authorMatt Kraai <kraai@gcc.gnu.org>
Fri, 13 Jun 2003 04:35:29 +0000 (04:35 +0000)
committerMatt Kraai <kraai@gcc.gnu.org>
Fri, 13 Jun 2003 04:35:29 +0000 (04:35 +0000)
* fold-const.c (tree_expr_nonnegative_p): Fix misspelling
of "least".

From-SVN: r67877

gcc/fold-const.c

index e67f0f657699b25ef0afe153251a058e8ff9c7e6..c8bbca4a7c82067253e31865d78b56ef037ec17e 100644 (file)
@@ -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)
This page took 0.081159 seconds and 5 git commands to generate.