mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-17 22:32:51 +00:00
Bug 448003 Z/mZ values are off by 100 on OS X. r=ted
This commit is contained in:
parent
27d234de8c
commit
e2d277a815
@ -60,7 +60,15 @@ while (<NM_OUTPUT>)
|
||||
my($addr) = $2;
|
||||
my($kind) = $3;
|
||||
my($symbol) = $4;
|
||||
|
||||
|
||||
#Skip absolute addresses, there should be only a few
|
||||
if ('A' eq $kind) {
|
||||
if ('trampoline_size' ne $symbol) {
|
||||
warn "Encountered unknown absolutely addressed symbol '$symbol' in $module";
|
||||
}
|
||||
next;
|
||||
}
|
||||
|
||||
# we expect the input to have been piped through c++filt to
|
||||
# demangle symbols. For some reason, it doesn't always demangle
|
||||
# all of them, so push still-mangled symbols back through c++filt again.
|
||||
|
Loading…
x
Reference in New Issue
Block a user