From bdd63628d707748c2e719cd0de16501be0049971 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Wed, 26 Oct 2005 07:49:05 +0000 Subject: [PATCH] * m32r.opc (parse_hi16): Do not assume a 32-bit host word size. --- opcodes/ChangeLog | 4 ++++ opcodes/m32r-asm.c | 8 ++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 89ca63d51e..42c6fe9bf4 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2005-10-26 Kazuhiro Inaoka + + * m32r-asm.c: Regenerate. + 2005-10-25 DJ Delorie * m32c-asm.c: Regenerate. diff --git a/opcodes/m32r-asm.c b/opcodes/m32r-asm.c index 50f1363e77..a5bd363316 100644 --- a/opcodes/m32r-asm.c +++ b/opcodes/m32r-asm.c @@ -89,7 +89,10 @@ parse_hi16 (CGEN_CPU_DESC cd, ++*strp; if (errmsg == NULL && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER) - value >>= 16; + { + value >>= 16; + value &= 0xffff; + } *valuep = value; return errmsg; } @@ -104,8 +107,9 @@ parse_hi16 (CGEN_CPU_DESC cd, if (errmsg == NULL && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER) { - value = value + (value & 0x8000 ? 0x10000 : 0); + value += 0x8000; value >>= 16; + value &= 0xffff; } *valuep = value; return errmsg; -- 2.11.0