]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
2006-07-27 Carlos O'Donell <carlos@codesourcery.com>
authorCarlos O'Donell <carlos@codesourcery.com>
Fri, 28 Jul 2006 17:26:04 +0000 (17:26 +0000)
committerCarlos O'Donell <carlos@codesourcery.com>
Fri, 28 Jul 2006 17:26:04 +0000 (17:26 +0000)
bfd/
* elfxx-mips.c (_bfd_mips_elf_print_private_bfd_data):
Print EF_MIPS_NOREORDER, EF_MIPS_PIC, EF_MIPS_CPIC, EF_MIPS_XGOT
and EF_MIPS_UCODE.

ChangeLog.csl
bfd/elfxx-mips.c

index e4f83ff918678fba91cf65a9b4f23a0be2099b77..6295d38e636f9df6db70d0f6633e22d566cbfb1c 100644 (file)
@@ -1,3 +1,10 @@
+2006-07-27  Carlos O'Donell  <carlos@codesourcery.com>
+
+       bfd/
+       * elfxx-mips.c (_bfd_mips_elf_print_private_bfd_data):
+       Print EF_MIPS_NOREORDER, EF_MIPS_PIC, EF_MIPS_CPIC, EF_MIPS_XGOT
+       and EF_MIPS_UCODE.
+
 2006-07-26  Vladimir Prus  <vladimir@codesourcery.com>
        
        bfd/
index 6f6b4a2e6c7bc3417b049de0424540b49a606554..7f124b091af75ac1f6bc1c0881a33b96a396b24d 100644 (file)
@@ -10007,6 +10007,21 @@ _bfd_mips_elf_print_private_bfd_data (bfd *abfd, void *ptr)
   else
     fprintf (file, _(" [not 32bitmode]"));
 
+  if (elf_elfheader (abfd)->e_flags & EF_MIPS_NOREORDER)
+    fprintf (file, _(" [.noreorder]"));
+
+  if (elf_elfheader (abfd)->e_flags & EF_MIPS_PIC)
+    fprintf (file, _(" [PIC]"));
+
+  if (elf_elfheader (abfd)->e_flags & EF_MIPS_CPIC)
+    fprintf (file, _(" [CPIC]"));
+
+  if (elf_elfheader (abfd)->e_flags & EF_MIPS_XGOT)
+    fprintf (file, _(" [XGOT]"));
+
+  if (elf_elfheader (abfd)->e_flags & EF_MIPS_UCODE)
+    fprintf (file, _(" [UCODE]"));
+
   fputc ('\n', file);
 
   return TRUE;