2003-07-09 Chris Demetriou <cgd@broadcom.com>
* mips-dis.c (set_default_mips_dis_options): Get BFD from the disassembler_info's section, rather than from the disassembler_info's symbols pointer.
This commit is contained in:
parent
32f63c4bff
commit
fec0654638
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2003-07-09 Chris Demetriou <cgd@broadcom.com>
|
||||||
|
|
||||||
|
* mips-dis.c (set_default_mips_dis_options): Get BFD from
|
||||||
|
the disassembler_info's section, rather than from the
|
||||||
|
disassembler_info's symbols pointer.
|
||||||
|
|
||||||
2003-07-07 Alan Modra <amodra@bigpond.net.au>
|
2003-07-07 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
* ppc-opc.c: Remove NULL pointer checks. Formatting. Remove
|
* ppc-opc.c: Remove NULL pointer checks. Formatting. Remove
|
||||||
|
|
|
@ -495,11 +495,11 @@ set_default_mips_dis_options (info)
|
||||||
mips_hwr_names = mips_hwr_names_numeric;
|
mips_hwr_names = mips_hwr_names_numeric;
|
||||||
|
|
||||||
/* If an ELF "newabi" binary, use the n32/(n)64 GPR names. */
|
/* If an ELF "newabi" binary, use the n32/(n)64 GPR names. */
|
||||||
if (info->flavour == bfd_target_elf_flavour && info->symbols != NULL)
|
if (info->flavour == bfd_target_elf_flavour && info->section != NULL)
|
||||||
{
|
{
|
||||||
Elf_Internal_Ehdr *header;
|
Elf_Internal_Ehdr *header;
|
||||||
|
|
||||||
header = elf_elfheader (bfd_asymbol_bfd (*(info->symbols)));
|
header = elf_elfheader (info->section->owner);
|
||||||
if (is_newabi (header))
|
if (is_newabi (header))
|
||||||
mips_gpr_names = mips_gpr_names_newabi;
|
mips_gpr_names = mips_gpr_names_newabi;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue