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:
parent
80cc8c4502
commit
4e2fff5898
@ -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!");
|
||||
|
Loading…
x
Reference in New Issue
Block a user