2003-03-02 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@gnu.org>
Mon, 3 Mar 2003 07:11:42 +0000 (07:11 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 3 Mar 2003 07:11:42 +0000 (07:11 +0000)
* scripts/abilist.awk: Reject data items with apparent 0 size.

scripts/abilist.awk

index 6e413f5..c25cbc0 100644 (file)
@@ -44,6 +44,10 @@ $2 == "g" || $2 == "w" && NF == 7 {
     print symbol, version, weak, "?", type, $4, $5;
     next;
   }
+  if (size == " 0x") {
+    print symbol, version, weak, "?", type, $4, $5;
+    next;
+  }
 
   # Disabled -- weakness should not matter to shared library ABIs any more.
   #if (weak == "w") type = tolower(type);