diff options
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Execution.cpp')
| -rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Execution.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp b/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp index b19fa04..e64a6e8 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp +++ b/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp @@ -753,7 +753,7 @@ void Interpreter::visitAllocationInst(AllocationInst &I) {    DOUT << "Allocated Type: " << *Ty << " (" << TypeSize << " bytes) x "          << NumElements << " (Total: " << MemToAlloc << ") at " -       << unsigned(Memory) << '\n'; +       << std::hex << Memory << '\n';    GenericValue Result = PTOGV(Memory);    assert(Result.PointerVal != 0 && "Null pointer returned by malloc!");  | 
