mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 23:39:35 +08:00
Take unadjusted offset for loongson3a specific instructions.
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
2011-01-11 Mingjie Xing <mingjie.xing@gmail.com>
|
||||
|
||||
* mips-dis.c (print_insn_args): Adjust the value to print the real
|
||||
offset for "+c" argument.
|
||||
|
||||
2011-01-10 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* po/da.po: Updated Danish translation.
|
||||
|
@ -991,7 +991,8 @@ print_insn_args (const char *d,
|
||||
delta = (l >> OP_SH_OFFSET_C) & OP_MASK_OFFSET_C;
|
||||
if (delta & 0x100)
|
||||
delta |= ~OP_MASK_OFFSET_C;
|
||||
(*info->fprintf_func) (info->stream, "%d", delta);
|
||||
/* Left shift 4 bits to print the real offset. */
|
||||
(*info->fprintf_func) (info->stream, "%d", delta << 4);
|
||||
break;
|
||||
|
||||
case 'z':
|
||||
|
Reference in New Issue
Block a user