mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Properly handle indirect functions in ABI check on powerpc64
This commit is contained in:
@ -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>
|
2012-11-28 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
[BZ #13881]
|
[BZ #13881]
|
||||||
|
@ -81,7 +81,7 @@ $2 == "g" || $2 == "w" && (NF == 7 || NF == 8) {
|
|||||||
type = "F";
|
type = "F";
|
||||||
size = "";
|
size = "";
|
||||||
}
|
}
|
||||||
else if (type == "iD" && $4 == ".text") {
|
else if (type == "iD" && ($4 == ".text" || $4 == ".opd")) {
|
||||||
# Indirect functions.
|
# Indirect functions.
|
||||||
type = "F";
|
type = "F";
|
||||||
size = "";
|
size = "";
|
||||||
|
Reference in New Issue
Block a user