mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 22:30:07 +00:00
Properly handle indirect functions in ABI check on powerpc64
This commit is contained in:
parent
4cc34c3511
commit
e3c6aa3a58
@ -1,3 +1,8 @@
|
||||
2012-11-28 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* scripts/abilist.awk: Also handle indirect functions in .opd
|
||||
section.
|
||||
|
||||
2012-11-28 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
[BZ #13881]
|
||||
|
@ -81,7 +81,7 @@ $2 == "g" || $2 == "w" && (NF == 7 || NF == 8) {
|
||||
type = "F";
|
||||
size = "";
|
||||
}
|
||||
else if (type == "iD" && $4 == ".text") {
|
||||
else if (type == "iD" && ($4 == ".text" || $4 == ".opd")) {
|
||||
# Indirect functions.
|
||||
type = "F";
|
||||
size = "";
|
||||
|
Loading…
Reference in New Issue
Block a user