mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-25 14:32:53 +00:00
Attempt to unbreak little-endian buildbots.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203023 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c4392f9fe9
commit
1da08cb171
@ -458,9 +458,12 @@ static void printRuntimeFunction(const COFFObjectFile *Obj,
|
||||
if (!RF.StartAddress)
|
||||
return;
|
||||
outs() << "Function Table:\n"
|
||||
<< format(" Start Address: 0x%04x\n", RF.StartAddress)
|
||||
<< format(" End Address: 0x%04x\n", RF.EndAddress)
|
||||
<< format(" Unwind Info Address: 0x%04x\n", RF.UnwindInfoOffset);
|
||||
<< format(" Start Address: 0x%04x\n",
|
||||
static_cast<uint32_t>(RF.StartAddress))
|
||||
<< format(" End Address: 0x%04x\n",
|
||||
static_cast<uint32_t>(RF.EndAddress))
|
||||
<< format(" Unwind Info Address: 0x%04x\n",
|
||||
static_cast<uint32_t>(RF.UnwindInfoOffset));
|
||||
uintptr_t addr;
|
||||
if (Obj->getRvaPtr(RF.UnwindInfoOffset, addr))
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user