diff options
author | Chris Lattner <sabre@nondot.org> | 2002-12-28 20:00:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-12-28 20:00:15 +0000 |
commit | 623a2225103680f68e6aeaff6c25674da8357e1f (patch) | |
tree | 7c94e8257fa9f59b82de58b3c8fd74b240020eb7 /lib/ExecutionEngine | |
parent | c93489bf878070d3be5331177f7e4451a2c34841 (diff) |
Add diagnostic output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5157 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r-- | lib/ExecutionEngine/ExecutionEngine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ExecutionEngine/ExecutionEngine.cpp b/lib/ExecutionEngine/ExecutionEngine.cpp index 456f68244a..e6c85812e0 100644 --- a/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/lib/ExecutionEngine/ExecutionEngine.cpp @@ -213,6 +213,7 @@ void ExecutionEngine::emitGlobals() { DEBUG(std::cerr << "Global '" << I->getName() << "' -> " << (void*)GlobalAddress[I] << "\n"); } else { + std::cerr << "Global: " << I->getName() << "\n"; assert(0 && "References to external globals not handled yet!"); } |