diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 1281c4a..21378d7 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2006-03-10 Paul Brook <paul@codesourcery.com> + + * readelf.c (decode_ARM_machine_flags): Handle EABIv5. + 2006-03-10 Alan Modra <amodra@bigpond.net.au> * dwarf.c (process_extended_line_op): Remove pointer_size param. diff --git a/binutils/readelf.c b/binutils/readelf.c index dcd02bc..d8bd54f 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -1793,6 +1793,11 @@ decode_ARM_machine_flags (unsigned e_flags, char buf[]) case EF_ARM_EABI_VER4: strcat (buf, ", Version4 EABI"); + goto eabi; + + case EF_ARM_EABI_VER5: + strcat (buf, ", Version5 EABI"); + eabi: while (e_flags) { unsigned flag; |