From: Steve Ellcey Date: Tue, 17 Sep 2013 21:07:13 +0000 (+0000) Subject: 2013-09-17 Doug Gilmore X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5baf5e34cf637187e29b3f284942ca47e3e1e40d;p=binutils-gdb.git 2013-09-17 Doug Gilmore * elfxx-mips.c (_bfd_mips_elf_print_private_bfd_data): Handle EF_MIPS_FP64. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index d3a323464ec..116532c226b 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2013-09-17 Doug Gilmore + + * elfxx-mips.c (_bfd_mips_elf_print_private_bfd_data): Handle + EF_MIPS_FP64. + 2013-08-31 John David Anglin * elf64-hppa.c (elf_hppa_final_link_relocate): Add missing '%' to diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index fd7900d0a30..5d7a7d706fe 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -14938,6 +14938,9 @@ _bfd_mips_elf_print_private_bfd_data (bfd *abfd, void *ptr) if (elf_elfheader (abfd)->e_flags & EF_MIPS_NAN2008) fprintf (file, " [nan2008]"); + if (elf_elfheader (abfd)->e_flags & EF_MIPS_FP64) + fprintf (file, " [fp64]"); + if (elf_elfheader (abfd)->e_flags & EF_MIPS_32BITMODE) fprintf (file, " [32bitmode]"); else