mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-27 14:45:50 +00:00
[MCJIT] Fix some more RuntimeDyld debugging output format specifiers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218328 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4fcebee6d8
commit
2bb5b295a4
@ -54,7 +54,7 @@ static void dumpSectionMemory(const SectionEntry &S, StringRef State) {
|
||||
unsigned BytesRemaining = S.Size;
|
||||
|
||||
if (StartPadding) {
|
||||
dbgs() << "\n" << format("0x%08x", LoadAddr & ~(ColsPerRow - 1)) << ":";
|
||||
dbgs() << "\n" << format("0x%016" PRIx64, LoadAddr & ~(ColsPerRow - 1)) << ":";
|
||||
while (StartPadding--)
|
||||
dbgs() << " ";
|
||||
}
|
||||
@ -695,8 +695,8 @@ void RuntimeDyldImpl::reassignSectionAddress(unsigned SectionID,
|
||||
// "big enough" type.
|
||||
DEBUG(dbgs() << "Reassigning address for section "
|
||||
<< SectionID << " (" << Sections[SectionID].Name << "): "
|
||||
<< format("0x%016x", Sections[SectionID].LoadAddress) << " -> "
|
||||
<< format("0x%016x", Addr) << "\n");
|
||||
<< format("0x%016" PRIx64, Sections[SectionID].LoadAddress) << " -> "
|
||||
<< format("0x%016" PRIx64, Addr) << "\n");
|
||||
Sections[SectionID].LoadAddress = Addr;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user