diff options
author | Bill Wendling <isanbard@gmail.com> | 2007-03-08 23:37:24 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2007-03-08 23:37:24 +0000 |
commit | 16574a72e17c0e3ca863544f0708982a80dce37f (patch) | |
tree | c1bdeff105b563b1719d0b6971d7a60f7c13f5a1 /llvm/lib/ExecutionEngine/Interpreter | |
parent | 61a27739771fd6eaaebc1e665218603c768a8904 (diff) | |
download | bcm5719-llvm-16574a72e17c0e3ca863544f0708982a80dce37f.tar.gz bcm5719-llvm-16574a72e17c0e3ca863544f0708982a80dce37f.zip |
Don't use std::hex.
llvm-svn: 35038
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter')
-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 e64a6e8e51f..091b8e55316 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 " - << std::hex << Memory << '\n'; + << uintptr_t(Memory) << '\n'; GenericValue Result = PTOGV(Memory); assert(Result.PointerVal != 0 && "Null pointer returned by malloc!"); |