diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/readelf.c | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index d822fc9..88c9d1e 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -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 diff --git a/binutils/readelf.c b/binutils/readelf.c index d427ce1..6a5986f 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -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; |