summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsirl <sirl@138bc75d-0d04-0410-961f-82ee72b054a4>2002-01-21 22:19:55 +0000
committersirl <sirl@138bc75d-0d04-0410-961f-82ee72b054a4>2002-01-21 22:19:55 +0000
commite45d8203d8c5c3e2c223ef53514c8d127404c3f3 (patch)
treed0b166fdabc55ab0abc9add9af4faaec0d01f54a
parent027397fc492d82cc8dac27f05bdf4b1fe93889b0 (diff)
downloadgcc-e45d8203d8c5c3e2c223ef53514c8d127404c3f3.tar.gz
2002-01-21 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* combine.c (simplify_and_const_int): Properly sign-extend CONSTOP. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49057 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/combine.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index d65aaf811b1..33de54d7b39 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2002-01-21 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
+
+ * combine.c (simplify_and_const_int): Properly sign-extend CONSTOP.
+
2002-01-21 John David Anglin <dave@hiauly1.hia.nrc.ca>
* pa64-hpux.h (MD_EXEC_PREFIX): Set to "/usr/ccs/bin".
diff --git a/gcc/combine.c b/gcc/combine.c
index a5c29f04c3c..663fd1d6198 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -7830,6 +7830,7 @@ simplify_and_const_int (x, mode, varop, constop)
else
{
+ constop = trunc_int_for_mode (constop, mode);
if (GET_CODE (XEXP (x, 1)) != CONST_INT
|| (unsigned HOST_WIDE_INT) INTVAL (XEXP (x, 1)) != constop)
SUBST (XEXP (x, 1), GEN_INT (constop));