Skip to content

Commit

Permalink
debuginfo: Fix build on 32-bit ARM
Browse files Browse the repository at this point in the history
This slipped through in 955d427, as we aren't building for
32 bit ARM during CI right now.

GitHub: Fixes JuliaLang#44254.
  • Loading branch information
dnadlinger authored and LilithHafner committed Mar 8, 2022
1 parent 7952eb1 commit 3a2ebb0
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 3a2ebb0

Please sign in to comment.