2003-03-02 Roland McGrath <roland@redhat.com>

* scripts/abilist.awk: Reject data items with apparent 0 size.
This commit is contained in:
Roland McGrath 2003-03-03 07:11:42 +00:00
parent 7d9952c196
commit 620656a3ff

View 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);