]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Properly handle indirect functions in ABI check on powerpc64
authorAndreas Schwab <schwab@suse.de>
Wed, 28 Nov 2012 09:24:06 +0000 (10:24 +0100)
committerTulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
Fri, 26 Apr 2013 20:22:00 +0000 (17:22 -0300)
ChangeLog
scripts/abilist.awk

index 06993a588f89a390ddd29cc4c9eb65e64840e8e4..96e1d81c142fdd3781a6c5603a27e7026e7a5c82 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-11-28  Andreas Schwab  <schwab@suse.de>
+
+       * scripts/abilist.awk: Also handle indirect functions in .opd
+       section.
+
 2013-04-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
 
        * sysdeps/powerpc/power5/fpu/s_modf.c: Moved to ...
index 1c1d41d053b143902b16e552b2c09c0f4e042539..6d58f6663b325803e6ff3382bc9933c466cb0260 100644 (file)
@@ -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 = "";