mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-10 09:33:36 +00:00
* opcodes/arm-dis.c (print_insn_neon): Ensure disassembly of Neon
constants is the same on 32-bit and 64-bit hosts.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2010-05-28 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
|
||||||
|
|
||||||
|
* arm-dis.c (print_insn_neon): Ensure disassembly of Neon
|
||||||
|
constants is the same on 32-bit and 64-bit hosts.
|
||||||
|
|
||||||
2010-05-27 Jason Duerstock <jason.duerstock+binutils@gmail.com>
|
2010-05-27 Jason Duerstock <jason.duerstock+binutils@gmail.com>
|
||||||
|
|
||||||
* m68k-dis.c (print_insn_m68k): Emit undefined instructions as
|
* m68k-dis.c (print_insn_m68k): Emit undefined instructions as
|
||||||
|
|||||||
@@ -2720,7 +2720,8 @@ print_insn_neon (struct disassemble_info *info, long given, bfd_boolean thumb)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
func (stream, "#%ld\t; 0x%.8lx",
|
func (stream, "#%ld\t; 0x%.8lx",
|
||||||
(long) (NEGATIVE_BIT_SET ? value | ~0xffffffffL : value),
|
(long) (((value & 0x80000000L) != 0)
|
||||||
|
? value | ~0xffffffffL : value),
|
||||||
value);
|
value);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user