summaryrefslogtreecommitdiffstats
path: root/opcodes/v850-dis.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2013-01-15 08:45:45 +0000
committerNick Clifton <nickc@redhat.com>2013-01-15 08:45:45 +0000
commitdd42f060364b48544301451a4b68e01bc978b281 (patch)
tree0107564ec6477f07134fef85de74b371b7d0f85d /opcodes/v850-dis.c
parent77bf820f915a0c12108e266b185430fb73561c94 (diff)
downloadppe42-binutils-dd42f060364b48544301451a4b68e01bc978b281.tar.gz
ppe42-binutils-dd42f060364b48544301451a4b68e01bc978b281.zip
* config/tc-v850.c (md_assemble): Allow signed values for
V850E_IMMEDIATE. * gas/v850/basic.exp: Allow for variations in reloc names. * gas/v850/split-lo16.d: Likewise. * gas/v850/v850e1.s: Add more tests of the PREPARE insn. * gas/v850/v850e1.d: Update expected disassembly. * v850-dis.c (get_operand_value): Sign extend V850E_IMMEDIATE values. * v850-opc.c (IMM16LO): Add V850_OPERAND_SIGNED attribute.
Diffstat (limited to 'opcodes/v850-dis.c')
-rw-r--r--opcodes/v850-dis.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/opcodes/v850-dis.c b/opcodes/v850-dis.c
index 5f9d87b8f8..7d2e72025a 100644
--- a/opcodes/v850-dis.c
+++ b/opcodes/v850-dis.c
@@ -118,6 +118,8 @@ get_operand_value (const struct v850_operand *operand,
if (operand->flags & V850E_IMMEDIATE16HI)
value <<= 16;
+ else if (value & 0x8000)
+ value |= (-1L << 16);
return value;
}
OpenPOWER on IntegriCloud