1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Don't use std::hex.

llvm-svn: 35038
This commit is contained in:
Bill Wendling 2007-03-08 23:37:24 +00:00
parent 80cc8c4502
commit 4e2fff5898

View File

@ -753,7 +753,7 @@ void Interpreter::visitAllocationInst(AllocationInst &I) {
DOUT << "Allocated Type: " << *Ty << " (" << TypeSize << " bytes) x "
<< NumElements << " (Total: " << MemToAlloc << ") at "
<< std::hex << Memory << '\n';
<< uintptr_t(Memory) << '\n';
GenericValue Result = PTOGV(Memory);
assert(Result.PointerVal != 0 && "Null pointer returned by malloc!");