diff options
author | Sean Keys <skeys@ipdatasys.com> | 2012-07-05 19:37:52 +0000 |
---|---|---|
committer | Sean Keys <skeys@ipdatasys.com> | 2012-07-05 19:37:52 +0000 |
commit | 3879925e690102682c05d7f61997dae9eaf23b98 (patch) | |
tree | a154e9b8632ae32330ee15f32a61e4926fa40d88 /opcodes/xgate-dis.c | |
parent | f4263ca2cd6e7ad1c17050f13e93458a59a31884 (diff) | |
download | gdb-3879925e690102682c05d7f61997dae9eaf23b98.zip gdb-3879925e690102682c05d7f61997dae9eaf23b98.tar.gz gdb-3879925e690102682c05d7f61997dae9eaf23b98.tar.bz2 |
gas/config/
* tc-xgate.c: Revised assembler so that operands
are collected before the addressing mode is
determined.
include/opcode/
* xgate.h: Changed the format string for mode
XGATE_OP_DYA_MON.
opcodes/
* xgate-dis.c: Removed an IF statement that will
always be false due to overlapping operand masks.
* xgate-opc.c: Corrected 'com' opcode entry and
fixed spacing.
Diffstat (limited to 'opcodes/xgate-dis.c')
-rw-r--r-- | opcodes/xgate-dis.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/opcodes/xgate-dis.c b/opcodes/xgate-dis.c index 8c722f5..31f44d6 100644 --- a/opcodes/xgate-dis.c +++ b/opcodes/xgate-dis.c @@ -177,16 +177,7 @@ print_insn (bfd_vma memaddr, struct disassemble_info* info) } break; case XG_R_R: - if (!strcmp (decodePTR->opcodePTR->constraints, XGATE_OP_DYA_MON)) - { - operandOne = ripBits (&operMaskReg, 3, decodePTR->opcodePTR, - raw_code); - operandTwo = ripBits (&operMaskReg, 3, decodePTR->opcodePTR, - raw_code); - (*info->fprintf_func)(info->stream, " R%x, R%x", operandOne, - operandTwo); - } - else if (!strcmp (decodePTR->opcodePTR->constraints, XGATE_OP_DYA)) + if (!strcmp (decodePTR->opcodePTR->constraints, XGATE_OP_DYA)) { operandOne = ripBits (&operMaskReg, 3, opcodePTR, raw_code); operandTwo = ripBits (&operMaskReg, 3, opcodePTR, raw_code); |