Add support for marking ARM ELF binaries as support the Cirrus EP9312 Maverick

floating point co-processor.
This commit is contained in:
Nick Clifton
2003-02-10 10:44:48 +00:00
parent 469def5365
commit fde78edd7a
11 changed files with 68 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2003-02-10 Nick Clifton <nickc@redhat.com>
* readelf.c (decode_ARM_machine_flags): Handle the
EF_ARM_MAVERICK_FLOAT flag.
2003-02-04 Andreas Schwab <schwab@suse.de>
* rddbg.c (read_section_stabs_debugging_info): Cast ptrdiff_t to

View File

@ -1873,6 +1873,10 @@ decode_ARM_machine_flags (e_flags, buf)
strcat (buf, ", software FP");
break;
case EF_ARM_MAVERICK_FLOAT:
strcat (buf, ", Maverick FP");
break;
default:
unknown = 1;
break;