diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-04-08 18:35:23 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-04-08 18:35:23 -0400 |
commit | 34b1b41f3b5aa456a6142b063ef93f1397ee65b2 (patch) | |
tree | 89d24276a77fabfe97fba2c2c9723f806ad46db1 /gcc/fold-const.c | |
parent | e92d30482ecfa8b870e09648544af9ad54e60ccd (diff) | |
download | gcc-34b1b41f3b5aa456a6142b063ef93f1397ee65b2.zip gcc-34b1b41f3b5aa456a6142b063ef93f1397ee65b2.tar.gz gcc-34b1b41f3b5aa456a6142b063ef93f1397ee65b2.tar.bz2 |
Fix typo in comment of last change.
From-SVN: r7000
Diffstat (limited to 'gcc/fold-const.c')
-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 4cfd2a9..81f7b4f 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -4518,7 +4518,7 @@ fold (expr) arg0, integer_zero_node); /* If X is unsigned, convert X < (1 << Y) into X >> Y == 0 - and similarly for <= into !=. */ + and similarly for >= into !=. */ if ((code == LT_EXPR || code == GE_EXPR) && TREE_UNSIGNED (TREE_TYPE (arg0)) && TREE_CODE (arg1) == LSHIFT_EXPR |