mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-13 17:00:01 +00:00
Fix failure on builder clang-cmake-mips where it was printing a 32-bit address
incorrectly because it came from an expression using S.getAddress() which always returns a 64-bit value. llvm-svn: 234251
This commit is contained in:
parent
657d25b1ca
commit
86a23c9deb
@ -3102,7 +3102,8 @@ walk_pointer_list_32(const char *listname, const SectionRef S,
|
||||
if (i + sizeof(uint32_t) > S.getSize())
|
||||
outs() << listname << " list pointer extends past end of (" << SegName
|
||||
<< "," << SectName << ") section\n";
|
||||
outs() << format("%08" PRIx32, S.getAddress() + i) << " ";
|
||||
uint32_t Address = S.getAddress() + i;
|
||||
outs() << format("%08" PRIx32, Address) << " ";
|
||||
|
||||
if (O->isLittleEndian() != sys::IsLittleEndianHost)
|
||||
sys::swapByteOrder(p);
|
||||
|
Loading…
x
Reference in New Issue
Block a user