From e3c6aa3a5848a1beff925eba9a58e4e7c7463297 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 28 Nov 2012 10:24:06 +0100 Subject: Properly handle indirect functions in ABI check on powerpc64 --- scripts/abilist.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/abilist.awk b/scripts/abilist.awk index 1c1d41d..6d58f66 100644 --- a/scripts/abilist.awk +++ b/scripts/abilist.awk @@ -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 = ""; -- cgit v1.1