about summary refs log tree commit diff
path: root/scripts/abilist.awk
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/abilist.awk')
-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;
   }