mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-19 05:42:42 +08:00
2001-07-13 Philip Blundell <philb@gnu.org>
* arm-dis.c (print_insn_arm): Use decimal for offsets in LDR/STR.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2001-07-13 Philip Blundell <philb@gnu.org>
|
||||||
|
|
||||||
|
* arm-dis.c (print_insn_arm): Use decimal for offsets in LDR/STR.
|
||||||
|
|
||||||
2001-07-12 Jeff Johnston <jjohnstn@redhat.com>
|
2001-07-12 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* cgen-asm.in: Include "xregex.h" always to enable the libiberty
|
* cgen-asm.in: Include "xregex.h" always to enable the libiberty
|
||||||
|
@ -201,7 +201,7 @@ print_insn_arm (pc, info, given)
|
|||||||
offset = - offset;
|
offset = - offset;
|
||||||
|
|
||||||
/* pre-indexed */
|
/* pre-indexed */
|
||||||
func (stream, ", #%x]", offset);
|
func (stream, ", #%d]", offset);
|
||||||
|
|
||||||
offset += pc + 8;
|
offset += pc + 8;
|
||||||
|
|
||||||
@ -215,7 +215,7 @@ print_insn_arm (pc, info, given)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* Post indexed. */
|
/* Post indexed. */
|
||||||
func (stream, "], #%x", offset);
|
func (stream, "], #%d", offset);
|
||||||
|
|
||||||
offset = pc + 8; /* ie ignore the offset. */
|
offset = pc + 8; /* ie ignore the offset. */
|
||||||
}
|
}
|
||||||
@ -280,7 +280,7 @@ print_insn_arm (pc, info, given)
|
|||||||
if ((given & 0x00800000) == 0)
|
if ((given & 0x00800000) == 0)
|
||||||
offset = -offset;
|
offset = -offset;
|
||||||
|
|
||||||
func (stream, "[pc, #%x]\t; ", offset);
|
func (stream, "[pc, #%d]\t; ", offset);
|
||||||
|
|
||||||
(*info->print_address_func)
|
(*info->print_address_func)
|
||||||
(offset + pc + 8, info);
|
(offset + pc + 8, info);
|
||||||
|
Reference in New Issue
Block a user