mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-25 19:14:52 +08:00
S12Z: Disassembly: Fallback to show the address if the symbol table is empty.
* opcodes/s12z-dis.c (decode_possible_symbol): Add fallback case. (rel_15_7): Likewise.
This commit is contained in:
parent
1f38083f42
commit
192c2bfbd7
@ -1,3 +1,8 @@
|
||||
2018-10-22 John Darrington <john@darrington.wattle.id.au>
|
||||
|
||||
* s12z-dis.c (decode_possible_symbol): Add fallback case.
|
||||
(rel_15_7): Likewise.
|
||||
|
||||
2018-10-19 Tamar Christina <tamar.christina@arm.com>
|
||||
|
||||
* arm-dis.c (UNKNOWN_INSTRUCTION_32BIT): Format specifier for arm mode.
|
||||
|
@ -378,6 +378,8 @@ decode_possible_symbol (bfd_vma addr, struct disassemble_info *info)
|
||||
}
|
||||
if (j < info->symtab_size)
|
||||
(*info->fprintf_func) (info->stream, "%s", bfd_asymbol_name (sym));
|
||||
else
|
||||
(*info->fprintf_func) (info->stream, "%" BFD_VMA_FMT "d", addr);
|
||||
}
|
||||
}
|
||||
|
||||
@ -922,6 +924,8 @@ rel_15_7 (bfd_vma memaddr, struct disassemble_info* info, int offset)
|
||||
}
|
||||
if (i < info->symtab_size)
|
||||
(*info->fprintf_func) (info->stream, "%s", bfd_asymbol_name (sym));
|
||||
else
|
||||
(*info->fprintf_func) (info->stream, "*%+d", addr);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user