diff options
| author | kraai <kraai@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-13 04:35:29 +0000 |
|---|---|---|
| committer | kraai <kraai@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-13 04:35:29 +0000 |
| commit | 2b8ef647e7979b3d6f7900c3df672e7f1df23b87 (patch) | |
| tree | 8f3251b89431de8506a80e9d8217a224fbc41117 | |
| parent | 2173075ba95645d53382fd907d27eb024bbba65e (diff) | |
| download | ppe42-gcc-2b8ef647e7979b3d6f7900c3df672e7f1df23b87.tar.gz ppe42-gcc-2b8ef647e7979b3d6f7900c3df672e7f1df23b87.zip | |
* fold-const.c (tree_expr_nonnegative_p): Fix misspelling
of "least".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67877 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/fold-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |

