about summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2012-02-11 10:00:36 -0800
committerH.J. Lu <hjl.tools@gmail.com>2012-02-11 10:00:36 -0800
commitb382aea8ecdf8f0c4b4a76bc70b8e98c9c94e516 (patch)
tree2470bf72db1e81cd3eb2a4be69d7e45be3013b2b /scripts
parent3c2a153c2bc1add2f50caabf5eb610253def6ce3 (diff)
parentbdb6de1d6d5d2a538e34fd453331acd0f664f6ed (diff)
downloadglibc-b382aea8ecdf8f0c4b4a76bc70b8e98c9c94e516.tar.gz
glibc-b382aea8ecdf8f0c4b4a76bc70b8e98c9c94e516.tar.xz
glibc-b382aea8ecdf8f0c4b4a76bc70b8e98c9c94e516.zip
Merge remote-tracking branch 'origin/master' into hjl/x32/master
Conflicts:
	configure
	shlib-versions
Diffstat (limited to 'scripts')
-rw-r--r--scripts/abilist.awk5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/abilist.awk b/scripts/abilist.awk
index a042ce7113..6a08839cdd 100644
--- a/scripts/abilist.awk
+++ b/scripts/abilist.awk
@@ -74,6 +74,11 @@ $2 == "g" || $2 == "w" && NF == 7 {
     type = "F";
     size = "";
   }
+  else if (type == "iD" && $4 == ".text") {
+    # Indirect functions.
+    type = "F";
+    size = "";
+  }
   else {
     desc = symbol " " version " " weak " ? " type " " $4 " " $5;
   }