mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-23 20:19:49 +00:00
2013-09-17 Doug Gilmore <Doug.Gilmore@imgtec.com>
* readelf.c (get_machine_flags): Handle EF_MIPS_FP64.
This commit is contained in:
parent
f1c38003e7
commit
fef1b0b33b
@ -1,3 +1,7 @@
|
||||
2013-09-17 Doug Gilmore <Doug.Gilmore@imgtec.com>
|
||||
|
||||
* readelf.c (get_machine_flags): Handle EF_MIPS_FP64.
|
||||
|
||||
2013-09-12 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* dwarf.c (dwarf_vmatoa): Rename to dwarf_vmatoa_1 and add a
|
||||
|
@ -2571,6 +2571,9 @@ get_machine_flags (unsigned e_flags, unsigned e_machine)
|
||||
if (e_flags & EF_MIPS_NAN2008)
|
||||
strcat (buf, ", nan2008");
|
||||
|
||||
if (e_flags & EF_MIPS_FP64)
|
||||
strcat (buf, ", fp64");
|
||||
|
||||
switch ((e_flags & EF_MIPS_MACH))
|
||||
{
|
||||
case E_MIPS_MACH_3900: strcat (buf, ", 3900"); break;
|
||||
|
Loading…
Reference in New Issue
Block a user