mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 18:44:20 +08:00
* arm-dis.c (print_insn_neon): Disassemble 32-bit immediates as signed
on 64-bit hosts.
This commit is contained in:
parent
ce28273f99
commit
4e9d3b813b
@ -1,3 +1,8 @@
|
||||
2006-06-12 Julian Brown <julian@codesourcery.com>
|
||||
|
||||
* arm-dis.c (print_insn_neon): Disassemble 32-bit immediates as signed
|
||||
on 64-bit hosts.
|
||||
|
||||
2006-06-10 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* i386.c (GRP10): Renamed to ...
|
||||
|
@ -2417,7 +2417,9 @@ print_insn_neon (struct disassemble_info *info, long given, bfd_boolean thumb)
|
||||
value);
|
||||
}
|
||||
else
|
||||
func (stream, "#%ld\t; 0x%.8lx", value, value);
|
||||
func (stream, "#%ld\t; 0x%.8lx",
|
||||
(long) ((value & 0x80000000)
|
||||
? value | ~0xffffffffl : value), value);
|
||||
break;
|
||||
|
||||
case 64:
|
||||
|
Loading…
Reference in New Issue
Block a user