Follow up to bug 448003 Z/mZ values are off by 100 on OS X - make the symbol type matching case-insensitive. r=ted

This commit is contained in:
Philippe M. Chiasson 2008-08-12 09:31:03 +01:00
parent fba2d206f6
commit 4d6835a1a0

View File

@ -62,7 +62,7 @@ while (<NM_OUTPUT>)
my($symbol) = $4;
#Skip absolute addresses, there should be only a few
if ('A' eq $kind) {
if ('a' eq lc $kind) {
if ('trampoline_size' ne $symbol) {
warn "Encountered unknown absolutely addressed symbol '$symbol' in $module";
}