2002-04-24 Chris G. Demetriou <cgd@broadcom.com>
authorChris Demetriou <cgd@google.com>
Wed, 24 Apr 2002 18:49:00 +0000 (18:49 +0000)
committerChris Demetriou <cgd@google.com>
Wed, 24 Apr 2002 18:49:00 +0000 (18:49 +0000)
        * elfxx-mips.c (_bfd_mips_elf_print_private_bfd_data): If MDMX or
        MIPS-16 ASE flags are set, print something to indicate that.

bfd/ChangeLog
bfd/elfxx-mips.c

index eed424041af5a0b0c3725a9c46f50cf2c8783d8f..bb7e6bbec36d6f8c4e1b2ffd3564d437fdbc06e9 100644 (file)
@@ -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>
 
        * elf32-hppa.c (hppa_type_of_stub): Correct and simplify condition
index 90426c437c9618817c9391082d3606c573ecb19c..c47556f0770e7825c09dd7dbf3144eabb695039b 100644 (file)
@@ -7761,6 +7761,12 @@ _bfd_mips_elf_print_private_bfd_data (abfd, ptr)
   else
     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)
     fprintf (file, _(" [32bitmode]"));
   else
This page took 0.030616 seconds and 4 git commands to generate.