mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 14:10:41 +00:00
tools: use 64-bit print specifier
Try to repair the ARM Cortex-A15 buildbot by using a more appropriate conversion specifier. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199711 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d28c094c80
commit
bb70b577e3
@ -176,7 +176,7 @@ void OpcodeDecoder::Decode_10110010_uleb128(const uint8_t *Opcodes,
|
||||
for (unsigned BI = 0, BE = ULEB.size(); BI != BE; ++BI)
|
||||
Value = Value | ((ULEB[BI] & 0x7f) << (7 * BI));
|
||||
|
||||
OS << format("; vsp = vsp + %u\n", 0x204 + (Value << 2));
|
||||
OS << format("; vsp = vsp + %" PRIu64 "\n", 0x204 + (Value << 2));
|
||||
}
|
||||
void OpcodeDecoder::Decode_10110011_sssscccc(const uint8_t *Opcodes,
|
||||
unsigned &OI) {
|
||||
|
Loading…
Reference in New Issue
Block a user