summaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorSteve Ellcey <sje@cup.hp.com>2013-09-17 21:07:13 +0000
committerSteve Ellcey <sje@cup.hp.com>2013-09-17 21:07:13 +0000
commit42b683959cbd8bd6891b745873d9617619966e2c (patch)
tree8212b6ee08ebf215509665d181f1a4e99ae3ca66 /bfd
parent0ba63364adb329d28c3009e28b719b100f7c7aa0 (diff)
downloadgdb-42b683959cbd8bd6891b745873d9617619966e2c.tar.gz
2013-09-17 Doug Gilmore <Doug.Gilmore@imgtec.com>
* elfxx-mips.c (_bfd_mips_elf_print_private_bfd_data): Handle EF_MIPS_FP64.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/elfxx-mips.c3
2 files changed, 8 insertions, 0 deletions
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 <Doug.Gilmore@imgtec.com>
+
+ * elfxx-mips.c (_bfd_mips_elf_print_private_bfd_data): Handle
+ EF_MIPS_FP64.
+
2013-08-31 John David Anglin <dave.anglin@bell.net>
* 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