diff options
author | Steve Ellcey <sje@cup.hp.com> | 2013-09-17 21:07:13 +0000 |
---|---|---|
committer | Steve Ellcey <sje@cup.hp.com> | 2013-09-17 21:07:13 +0000 |
commit | 5baf5e34cf637187e29b3f284942ca47e3e1e40d (patch) | |
tree | 48a2c41065b6119c097ecb6d791661a6b62629de /bfd | |
parent | f303dcc05db66bc041e604932ec6390b129a2ad4 (diff) | |
download | gdb-5baf5e34cf637187e29b3f284942ca47e3e1e40d.zip gdb-5baf5e34cf637187e29b3f284942ca47e3e1e40d.tar.gz gdb-5baf5e34cf637187e29b3f284942ca47e3e1e40d.tar.bz2 |
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/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elfxx-mips.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index d3a3234..116532c 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 fd7900d..5d7a7d7 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 |