mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-26 11:33:45 +08:00
Prevent double dumping of raw thumb instructions.
This commit is contained in:
parent
5ebc0f396f
commit
cb26882951
@ -1,3 +1,8 @@
|
||||
2000-01-25 Thomas de Lellis <tdel@windriver.com>
|
||||
|
||||
* arm-dis.c (printf_insn_thumb): Prevent double dumping
|
||||
of raw thumb instructions.
|
||||
|
||||
2000-01-20 Nick Clifton <nickc@cygnus.com>
|
||||
|
||||
* mcore-opc.h (mcore_table): Add "add" as an alias for "addu".
|
||||
|
@ -590,7 +590,7 @@ print_insn_thumb (pc, info, given)
|
||||
info->bytes_per_chunk = 4;
|
||||
info->bytes_per_line = 4;
|
||||
|
||||
func (stream, "%04x\tbl\t", given & 0xffff);
|
||||
func (stream, "bl\t");
|
||||
(*info->print_address_func)
|
||||
(BDISP23 (given) * 2 + pc + 4, info);
|
||||
return 4;
|
||||
@ -601,8 +601,7 @@ print_insn_thumb (pc, info, given)
|
||||
info->bytes_per_line = 4;
|
||||
|
||||
given &= 0xffff;
|
||||
func (stream, "%04x\t", given);
|
||||
|
||||
|
||||
for (; *c; c++)
|
||||
{
|
||||
if (*c == '%')
|
||||
|
Loading…
Reference in New Issue
Block a user