mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-29 02:20:51 +00:00
Fix %hi() operator for 64-bit hosts.
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user