mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-03 04:01:22 +08:00
PR 11170
* arm-dis.c (print_arm_address): Do not ignore negative bit in PC based post-indexed addressing.
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
2010-01-20 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR 11170
|
||||
* arm-dis.c (print_arm_address): Do not ignore negative bit in PC
|
||||
based post-indexed addressing.
|
||||
|
||||
2010-01-15 Sebastian Pop <sebastian.pop@amd.com>
|
||||
|
||||
* i386-opc.tbl: Support all the possible aliases for VPCOM* insns.
|
||||
|
@ -2294,11 +2294,11 @@ print_arm_address (bfd_vma pc, struct disassemble_info *info, long given)
|
||||
|
||||
func (stream, "[pc");
|
||||
|
||||
if (NEGATIVE_BIT_SET)
|
||||
offset = - offset;
|
||||
|
||||
if (PRE_BIT_SET)
|
||||
{
|
||||
if (NEGATIVE_BIT_SET)
|
||||
offset = - offset;
|
||||
|
||||
/* Pre-indexed. */
|
||||
func (stream, ", #%d]", offset);
|
||||
|
||||
|
Reference in New Issue
Block a user