ubsan: moxie: left shift of negative value
[deliverable/binutils-gdb.git] / opcodes / moxie-dis.c
index cbfcf958806831bcd32b85eca1fdb9f891e6e65b..1d06e184794217a48b7db9f1aa17112abb727799 100644 (file)
@@ -33,7 +33,7 @@ static void *stream;
 /* Macros to extract operands from the instruction word.  */
 #define OP_A(i) ((i >> 4) & 0xf)
 #define OP_B(i) (i & 0xf)
-#define INST2OFFSET(o) (((((o) & 0x3ff) ^ 0x200) - 0x200) << 1)
+#define INST2OFFSET(o) (((((o) & 0x3ff) ^ 0x200) - 0x200) * 2)
 
 static const char * reg_names[16] =
   { "$fp", "$sp", "$r0", "$r1", "$r2", "$r3", "$r4", "$r5",
@@ -210,8 +210,7 @@ print_insn_moxie (bfd_vma addr, struct disassemble_info * info)
        {
        case MOXIE_F3_PCREL:
          fpr (stream, "%s\t", opcode->name);
-         info->print_address_func ((bfd_vma) (addr + INST2OFFSET(iword) + 2),
-                                   info);
+         info->print_address_func (addr + INST2OFFSET (iword) + 2, info);
          break;
         case MOXIE_BAD:
          fpr (stream, "bad");
This page took 0.023273 seconds and 4 git commands to generate.