mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
Un-break the big-endian buildbots
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221919 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8082990487
commit
fb113f67b9
@ -1283,9 +1283,9 @@ getImportAddress(int AddrIndex, uint64_t &Result) const {
|
||||
if (std::error_code EC = OwningObject->getRvaPtr(RVA, IntPtr))
|
||||
return EC;
|
||||
if (OwningObject->is64())
|
||||
Result = *reinterpret_cast<const uint64_t *>(IntPtr);
|
||||
Result = *reinterpret_cast<const ulittle64_t *>(IntPtr);
|
||||
else
|
||||
Result = *reinterpret_cast<const uint32_t *>(IntPtr);
|
||||
Result = *reinterpret_cast<const ulittle32_t *>(IntPtr);
|
||||
return object_error::success;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user