commit | 3bae2e97d97ec5ed8df9ea4795a1127697738942 | [log] [tgz] |
---|---|---|
author | Bill Wendling <isanbard@gmail.com> | Thu Mar 08 23:26:50 2007 +0000 |
committer | Bill Wendling <isanbard@gmail.com> | Thu Mar 08 23:26:50 2007 +0000 |
tree | c90c0733cb72a959504f4aaf4896c0019ebd30ed | |
parent | 12d3a9138694541f8b2443501def6b72fedfa86b [diff] [blame] |
Don't use a cast. It causes an error on some platforms. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35037 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/ExecutionEngine/Interpreter/Execution.cpp b/lib/ExecutionEngine/Interpreter/Execution.cpp index b19fa04..e64a6e8 100644 --- a/lib/ExecutionEngine/Interpreter/Execution.cpp +++ b/lib/ExecutionEngine/Interpreter/Execution.cpp
@@ -753,7 +753,7 @@ 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!");