diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-11-05 00:22:28 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-11-05 00:22:28 +0000 |
commit | 4e20c5c30b35146ef37d7fc86d6872f147952256 (patch) | |
tree | 84c116c70591793c7a0449d217509e47c2ff8ac1 /lib/ExecutionEngine/ExecutionEngine.cpp | |
parent | 436893d924f525611ff5b83ae3da05ea54f02685 (diff) |
Debugging output tweak.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58737 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/ExecutionEngine.cpp')
-rw-r--r-- | lib/ExecutionEngine/ExecutionEngine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/ExecutionEngine.cpp b/lib/ExecutionEngine/ExecutionEngine.cpp index ad8dcfb923..18d44816fc 100644 --- a/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/lib/ExecutionEngine/ExecutionEngine.cpp @@ -94,7 +94,7 @@ Function *ExecutionEngine::FindFunctionNamed(const char *FnName) { void ExecutionEngine::addGlobalMapping(const GlobalValue *GV, void *Addr) { MutexGuard locked(lock); - DOUT << "Map " << *GV << " to " << Addr << "\n"; + DOUT << "Map \'" << GV->getNameStart() << "\' to " << Addr << "\n"; void *&CurVal = state.getGlobalAddressMap(locked)[GV]; assert((CurVal == 0 || Addr == 0) && "GlobalMapping already established!"); CurVal = Addr; @@ -839,7 +839,7 @@ void ExecutionEngine::LoadValueFromMemory(GenericValue &Result, // specified memory location... // void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) { - DOUT << "Initializing " << Addr; + DOUT << "Initializing " << Addr << " "; DEBUG(Init->dump()); if (isa<UndefValue>(Init)) { return; |