From: Bill Wendling Date: Thu, 8 Mar 2007 23:37:24 +0000 (+0000) Subject: Don't use std::hex. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=47992ea4be0b5a357178e7f734625e9d4a27492d;p=oota-llvm.git Don't use std::hex. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35038 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/ExecutionEngine/Interpreter/Execution.cpp b/lib/ExecutionEngine/Interpreter/Execution.cpp index e64a6e8e51f..091b8e55316 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!");