[PATCH] FT32: Fix disassembly of 10-bit literals

James Bowman james.bowman@ftdichip.com
Fri Sep 25 01:17:00 GMT 2015


The FT32's disassembly of 10-bit literals has the incorrect mask.

OK to apply?

diff --git a/opcodes/ft32-dis.c b/opcodes/ft32-dis.c
index 877a7ee..1e01da2 100644
--- a/opcodes/ft32-dis.c
+++ b/opcodes/ft32-dis.c
@@ -118,7 +118,7 @@ print_insn_ft32 (bfd_vma addr, struct disassemble_info *info)
               case  FT32_FLD_RIMM:
                 imm = (iword >> FT32_FLD_RIMM_BIT) & ((1 << FT32_FLD_RIMM_SIZ) - 1);
                 if (imm & 0x400)
-                  info->print_address_func ((bfd_vma) imm & 0x1ff, info);
+                  info->print_address_func ((bfd_vma) imm & 0x3ff, info);
                 else
                   fpr(stream, "$r%d", imm & 0x1f);
                 break;



More information about the Binutils mailing list