mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-05 21:50:21 +08:00
* d10v-dis.c (print_operand): Apply REGISTER_MASK to `num' of
unmatched register.
This commit is contained in:
@ -145,7 +145,7 @@ print_operand (oper, insn, op, memaddr, info)
|
||||
(*info->fprintf_func) (info->stream, "cr");
|
||||
else if (oper->flags & OPERAND_REG)
|
||||
(*info->fprintf_func) (info->stream, "r");
|
||||
(*info->fprintf_func) (info->stream, "%d", num);
|
||||
(*info->fprintf_func) (info->stream, "%d", num & REGISTER_MASK);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user