aboutsummaryrefslogtreecommitdiff
path: root/include/opcode/rx.h
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2015-11-02 14:14:22 +0000
committerNick Clifton <nickc@redhat.com>2015-11-02 14:14:22 +0000
commite292aa7a9529771c04e9578a2307b8c95bb5591c (patch)
treeab52096b7ce3007ec7b2744e0f90ce6075b9a844 /include/opcode/rx.h
parenta62e59897771e2f04fad908fc891714b9bd75d7b (diff)
downloadfsf-binutils-gdb-e292aa7a9529771c04e9578a2307b8c95bb5591c.zip
fsf-binutils-gdb-e292aa7a9529771c04e9578a2307b8c95bb5591c.tar.gz
fsf-binutils-gdb-e292aa7a9529771c04e9578a2307b8c95bb5591c.tar.bz2
Fix disassembly of RX zero-offset register indirect instructions.
opcode * rx.h (enum RX_Operand_Type): Add RX_Operand_Zero_Indirect. opcodes * rx-decode.opc (rx_disp): If the displacement is zero, set the type to RX_Operand_Zero_Indirect. * rx-decode.c: Regenerate. * rx-dis (print_insn): Handle RX_Operand_Zero_Indirect. gas * config/rx-parse.y: Allow zero value for 5-bit displacements. tests * gas/rx/mov.sm: Add tests for zero offset indirect moves. * gas/rx/mov.d: Update expected output.
Diffstat (limited to 'include/opcode/rx.h')
-rw-r--r--include/opcode/rx.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/opcode/rx.h b/include/opcode/rx.h
index 4a2cb14..66a1b34 100644
--- a/include/opcode/rx.h
+++ b/include/opcode/rx.h
@@ -48,6 +48,7 @@ typedef enum
RX_Operand_Immediate, /* #addend */
RX_Operand_Register, /* Rn */
RX_Operand_Indirect, /* [Rn + addend] */
+ RX_Operand_Zero_Indirect,/* [Rn] */
RX_Operand_Postinc, /* [Rn+] */
RX_Operand_Predec, /* [-Rn] */
RX_Operand_Condition, /* eq, gtu, etc */