aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine/Interpreter
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2007-03-08 23:37:24 +0000
committerBill Wendling <isanbard@gmail.com>2007-03-08 23:37:24 +0000
commit47992ea4be0b5a357178e7f734625e9d4a27492d (patch)
tree953a4148b6e1b505169bfc9a734604167ca2e07f /lib/ExecutionEngine/Interpreter
parent3bae2e97d97ec5ed8df9ea4795a1127697738942 (diff)
downloadexternal_llvm-47992ea4be0b5a357178e7f734625e9d4a27492d.zip
external_llvm-47992ea4be0b5a357178e7f734625e9d4a27492d.tar.gz
external_llvm-47992ea4be0b5a357178e7f734625e9d4a27492d.tar.bz2
Don't use std::hex.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35038 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter')
-rw-r--r--lib/ExecutionEngine/Interpreter/Execution.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Execution.cpp b/lib/ExecutionEngine/Interpreter/Execution.cpp
index e64a6e8..091b8e5 100644
--- a/lib/ExecutionEngine/Interpreter/Execution.cpp
+++ b/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!");