Skip to content

Commit 6936433

Browse files
authored
Merge pull request #44270 from dnadlinger/debuginfo-fix-arm32
debuginfo: Fix build on 32-bit ARM
2 parents e723d37 + c9ac2ea commit 6936433

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/debuginfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ class JITObjectRegistry
227227
continue;
228228
}
229229
}
230-
uint64_t loadaddr = L.getSectionLoadAddress(section);
230+
uint64_t loadaddr = getLoadAddress(section.getName().get());
231231
size_t seclen = section.getSize();
232232
if (istext) {
233233
arm_text_addr = loadaddr;

0 commit comments

Comments
 (0)