mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 13:56:22 +08:00
2002-04-24 Chris G. Demetriou <cgd@broadcom.com>
* elfxx-mips.c (_bfd_mips_elf_print_private_bfd_data): If MDMX or MIPS-16 ASE flags are set, print something to indicate that.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2002-04-24 Chris G. Demetriou <cgd@broadcom.com>
|
||||||
|
|
||||||
|
* elfxx-mips.c (_bfd_mips_elf_print_private_bfd_data): If MDMX or
|
||||||
|
MIPS-16 ASE flags are set, print something to indicate that.
|
||||||
|
|
||||||
2002-04-23 Alan Modra <amodra@bigpond.net.au>
|
2002-04-23 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
* elf32-hppa.c (hppa_type_of_stub): Correct and simplify condition
|
* elf32-hppa.c (hppa_type_of_stub): Correct and simplify condition
|
||||||
|
@ -7761,6 +7761,12 @@ _bfd_mips_elf_print_private_bfd_data (abfd, ptr)
|
|||||||
else
|
else
|
||||||
fprintf (file, _(" [unknown ISA]"));
|
fprintf (file, _(" [unknown ISA]"));
|
||||||
|
|
||||||
|
if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_MDMX)
|
||||||
|
fprintf (file, _(" [mdmx]"));
|
||||||
|
|
||||||
|
if (elf_elfheader (abfd)->e_flags & EF_MIPS_ARCH_ASE_M16)
|
||||||
|
fprintf (file, _(" [mips16]"));
|
||||||
|
|
||||||
if (elf_elfheader (abfd)->e_flags & EF_MIPS_32BITMODE)
|
if (elf_elfheader (abfd)->e_flags & EF_MIPS_32BITMODE)
|
||||||
fprintf (file, _(" [32bitmode]"));
|
fprintf (file, _(" [32bitmode]"));
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user