From ef1501d081b61cf3921318d1a517139888e137f9 Mon Sep 17 00:00:00 2001 From: Asanka Herath Date: Sat, 12 Sep 2009 00:41:10 -0400 Subject: [PATCH] Also include data when listing externals in an .OBJ file --- cf/w32-list-externs-from-objs.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cf/w32-list-externs-from-objs.pl b/cf/w32-list-externs-from-objs.pl index f72d0ae7e..ebc776744 100644 --- a/cf/w32-list-externs-from-objs.pl +++ b/cf/w32-list-externs-from-objs.pl @@ -17,7 +17,7 @@ sub dump_symbols_for_file($) while () { # 008 00000000 SECT3 notype () External | _encode_AccessDescription - /^[[:xdigit:]]{3,}\s[[:xdigit:]]{8,}\s(\w+)\s+\w*\s+\(\)\s+(\w+)\s+\|\s+(\w+)$/ && do { + /^[[:xdigit:]]{3,}\s[[:xdigit:]]{8,}\s(\w+)\s+\w*\s+(?:\(\)| )\s+(\w+)\s+\|\s+(\w+)$/ && do { my ($section, $visibility, $symbol) = ($1, $2, $3); if ($section ne "UNDEF" && $visibility eq "External") { -- 2.11.4.GIT