Skip to content

Commit

Permalink
Merge pull request #44270 from dnadlinger/debuginfo-fix-arm32
Browse files Browse the repository at this point in the history
debuginfo: Fix build on 32-bit ARM
  • Loading branch information
vchuravy authored Feb 20, 2022
2 parents e723d37 + c9ac2ea commit 6936433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/debuginfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ class JITObjectRegistry
continue;
}
}
uint64_t loadaddr = L.getSectionLoadAddress(section);
uint64_t loadaddr = getLoadAddress(section.getName().get());
size_t seclen = section.getSize();
if (istext) {
arm_text_addr = loadaddr;
Expand Down

0 comments on commit 6936433

Please sign in to comment.