diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-04-25 16:17:08 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-04-25 10:17:08 -0600 |
commit | 4f242db3993af702ef2cedbf500ee1cee46af2c7 (patch) | |
tree | 8ad81ce74b24436c6503a9acf5d7be82359c96a4 /gcc/fold-const.c | |
parent | de12be17436e7a02a24b9e99da71fb6bfa9a8075 (diff) | |
download | gcc-4f242db3993af702ef2cedbf500ee1cee46af2c7.zip gcc-4f242db3993af702ef2cedbf500ee1cee46af2c7.tar.gz gcc-4f242db3993af702ef2cedbf500ee1cee46af2c7.tar.bz2 |
* fold-const.c (fold_convert): Fix typo.
From-SVN: r19409
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 afdd26b..05fa7fea 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -1521,7 +1521,7 @@ fold_convert (t, arg1) TREE_OVERFLOW (t) = ((force_fit_type (t, (TREE_INT_CST_HIGH (arg1) < 0 - & (TREE_UNSIGNED (type) + && (TREE_UNSIGNED (type) < TREE_UNSIGNED (TREE_TYPE (arg1))))) && ! POINTER_TYPE_P (TREE_TYPE (arg1))) || TREE_OVERFLOW (arg1)); |