diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-12-22 14:43:24 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-12-22 14:43:24 -0500 |
commit | b16bd3ad9360c9975000683bd4e85ee56b578a5c (patch) | |
tree | dc0dc0d2cbafa457c678c5c45509fee34b369a91 /gcc | |
parent | 489e2090a45b6bf41e6d74edc729f01e50298e3b (diff) | |
download | gcc-b16bd3ad9360c9975000683bd4e85ee56b578a5c.zip gcc-b16bd3ad9360c9975000683bd4e85ee56b578a5c.tar.gz gcc-b16bd3ad9360c9975000683bd4e85ee56b578a5c.tar.bz2 |
Fix typo in comment.
From-SVN: r6273
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c-typeck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 51ee586..dbcd8e2 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -1942,7 +1942,7 @@ build_binary_op (code, orig_op0, orig_op1, convert_p) resultcode = RDIV_EXPR; else /* When dividing two signed integers, you have to promote to int. - E.g. (short) -32868 / (short) -1 doesn't fit in a short. */ + E.g. (short) -32768 / (short) -1 doesn't fit in a short. */ shorten = TREE_UNSIGNED (orig_op0); common = 1; } |