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:
Saleem Abdulrasool 2014-01-21 04:31:29 +00:00
parent d28c094c80
commit bb70b577e3

View File

@ -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) {