diff options
author | Ulrich Drepper <drepper@gmail.com> | 2012-01-07 19:23:45 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2012-01-07 19:23:45 -0500 |
commit | 00bbd29b35717f0de8b97e5b1e6fd3e979808ec3 (patch) | |
tree | fe3ca8a8fb7925ba83ab20add8a5126e3fa2efaf /scripts | |
parent | a2693a0e2ea184b915bd7c08eedd4a3d63958818 (diff) | |
download | glibc-00bbd29b35717f0de8b97e5b1e6fd3e979808ec3.zip glibc-00bbd29b35717f0de8b97e5b1e6fd3e979808ec3.tar.gz glibc-00bbd29b35717f0de8b97e5b1e6fd3e979808ec3.tar.bz2 |
Update ABI information
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/abilist.awk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/abilist.awk b/scripts/abilist.awk index a042ce7..6a08839 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; } |