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)
committerAndreas Schwab <schwab@suse.de>
Wed, 28 Nov 2012 15:19:08 +0000 (16:19 +0100)
ChangeLog
scripts/abilist.awk

index 2f2c9fc..14f8136 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.
+
 2012-11-28  Joseph Myers  <joseph@codesourcery.com>
 
        [BZ #13881]
index 1c1d41d..6d58f66 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 = "";