diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 6 | ||||
-rw-r--r-- | binutils/readelf.c | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index c4abd96..8cfe737 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,9 @@ +2010-05-25 Daniel Jacobowitz <dan@codesourcery.com> + Joseph Myers <joseph@codesourcery.com> + Andrew Stubbs <ams@codesourcery.com> + + * readelf.c (get_machine_flags): Handle EF_SH_PIC and EF_SH_FDPIC. + 2010-05-25 Jay Krell <jay.krell@cornell.edu> PR ld/11621 diff --git a/binutils/readelf.c b/binutils/readelf.c index 9c3e2dc..f64dcb9 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -2440,6 +2440,11 @@ get_machine_flags (unsigned e_flags, unsigned e_machine) default: strcat (buf, _(", unknown ISA")); break; } + if (e_flags & EF_SH_PIC) + strcat (buf, ", pic"); + + if (e_flags & EF_SH_FDPIC) + strcat (buf, ", fdpic"); break; case EM_SH: |