diff options
author | Nick Clifton <nickc@redhat.com> | 2006-02-10 12:05:12 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2006-02-10 12:05:12 +0000 |
commit | 8536c657ffc11014c02aa7811eda04ce8b05dd6b (patch) | |
tree | 21d618cc9a7e647de96477fe33ab350599d5e220 /cpu | |
parent | b6637a13d5e6b6587d20431819800bd030c77c47 (diff) | |
download | binutils-8536c657ffc11014c02aa7811eda04ce8b05dd6b.tar.gz binutils-8536c657ffc11014c02aa7811eda04ce8b05dd6b.tar.bz2 binutils-8536c657ffc11014c02aa7811eda04ce8b05dd6b.zip |
Fix %hi() operator for 64-bit hosts.
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/ChangeLog | 4 | ||||
-rw-r--r-- | cpu/iq2000.opc | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/cpu/ChangeLog b/cpu/ChangeLog index 358e366ef02..baefa5cde95 100644 --- a/cpu/ChangeLog +++ b/cpu/ChangeLog @@ -1,3 +1,7 @@ +2006-02-10 Nick Clifton <nickc@redhat.com> + + * iq2000.opc (parse_hi16): Truncate shifted values to 16 bits. + 2006-01-06 DJ Delorie <dj@redhat.com> * m32c.cpu (mov.w:q): Fix mode. diff --git a/cpu/iq2000.opc b/cpu/iq2000.opc index 63ef0768dd5..528750688f4 100644 --- a/cpu/iq2000.opc +++ b/cpu/iq2000.opc @@ -218,6 +218,7 @@ parse_hi16 (CGEN_CPU_DESC cd, if (value & 0x8000) value += 0x10000; value >>= 16; + value &= 0xffff; } *valuep = value; @@ -243,6 +244,7 @@ parse_hi16 (CGEN_CPU_DESC cd, && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER) value >>= 16; + value &= 0xffff; *valuep = value; return errmsg; |