From: Maciej W. Rozycki Date: Tue, 13 Nov 2012 00:54:56 +0000 (+0000) Subject: * readelf.c (get_machine_flags) : Move X-Git-Tag: cgen-snapshot-20121201~158 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cec6a5b82ba19f3d8155503da6d7313c9321fcf6;p=external%2Fbinutils.git * readelf.c (get_machine_flags) : Move code to handle EF_SH_PIC and EF_SH_FDPIC... : ... here. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 81aca13..c70e4b3 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,9 @@ +2012-11-13 Maciej W. Rozycki + + * readelf.c (get_machine_flags) : Move + code to handle EF_SH_PIC and EF_SH_FDPIC... + : ... here. + 2012-11-09 Nick Clifton * readelf.c (get_machine_flags): Add support for E_FLAG_RX_ABI. diff --git a/binutils/readelf.c b/binutils/readelf.c index ee5b607..f246211 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -2583,12 +2583,6 @@ get_machine_flags (unsigned e_flags, unsigned e_machine) case E_MIPS_ARCH_64R2: strcat (buf, ", mips64r2"); break; 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: @@ -2618,6 +2612,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_SPARCV9: