From: Chris Lattner Date: Sat, 28 Dec 2002 20:00:15 +0000 (+0000) Subject: Add diagnostic output X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=623a2225103680f68e6aeaff6c25674da8357e1f;p=oota-llvm.git Add diagnostic output git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5157 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/ExecutionEngine/ExecutionEngine.cpp b/lib/ExecutionEngine/ExecutionEngine.cpp index 456f68244af..e6c85812e0e 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!"); }