From: Andreas Schwab Date: Wed, 28 Nov 2012 09:24:06 +0000 (+0100) Subject: Properly handle indirect functions in ABI check on powerpc64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b498440aac70e994f32f45a31102964313af690;p=thirdparty%2Fglibc.git Properly handle indirect functions in ABI check on powerpc64 --- diff --git a/ChangeLog b/ChangeLog index 06993a588f8..96e1d81c142 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-11-28 Andreas Schwab + + * scripts/abilist.awk: Also handle indirect functions in .opd + section. + 2013-04-26 Adhemerval Zanella * sysdeps/powerpc/power5/fpu/s_modf.c: Moved to ... diff --git a/scripts/abilist.awk b/scripts/abilist.awk index 1c1d41d053b..6d58f6663b3 100644 --- a/scripts/abilist.awk +++ b/scripts/abilist.awk @@ -81,7 +81,7 @@ $2 == "g" || $2 == "w" && (NF == 7 || NF == 8) { type = "F"; size = ""; } - else if (type == "iD" && $4 == ".text") { + else if (type == "iD" && ($4 == ".text" || $4 == ".opd")) { # Indirect functions. type = "F"; size = "";