summaryrefslogtreecommitdiffstats
path: root/gcc
diff options
context:
space:
mode:
authoruweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4>2004-03-27 16:15:59 +0000
committeruweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4>2004-03-27 16:15:59 +0000
commit8f46af08aed71e7f92e36f1fdb24b984e88f313f (patch)
tree2c97f9c4f030a8d510d2bf2837223a2be7e337cf /gcc
parent04bb333d303b871cbf934fe25589388c694a2f51 (diff)
downloadppe42-gcc-8f46af08aed71e7f92e36f1fdb24b984e88f313f.tar.gz
ppe42-gcc-8f46af08aed71e7f92e36f1fdb24b984e88f313f.zip
* expr.c (store_constructor): Use gen_int_mode to correctly
sign-extend CONST_INT value. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80022 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/expr.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 156d56b3fba..e60ed81dbee 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2004-03-27 Ulrich Weigand <uweigand@de.ibm.com>
+
+ * expr.c (store_constructor): Use gen_int_mode to correctly
+ sign-extend CONST_INT value.
+
2004-03-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* builtin-types.def (BT_WINT, BT_FN_INT_WINT, BT_FN_WINT_WINT): New.
diff --git a/gcc/expr.c b/gcc/expr.c
index d77b6e5d587..fd129c115b2 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -5081,7 +5081,7 @@ store_constructor (tree exp, rtx target, int cleared, HOST_WIDE_INT size)
{
if (word != 0 || ! cleared)
{
- rtx datum = GEN_INT (word);
+ rtx datum = gen_int_mode (word, mode);
rtx to_rtx;
/* The assumption here is that it is safe to use
OpenPOWER on IntegriCloud