diff options
author | Chris Lattner <sabre@nondot.org> | 2009-03-05 06:48:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-03-05 06:48:16 +0000 |
commit | be3ae8e479c02b3045eef8eb18c4dacbd3af14c2 (patch) | |
tree | 012ef7a2b578761aa4341ec120d86f75f1efabef | |
parent | 50cd6fda9e98f68a9a6e1adf72c38baf614bd305 (diff) |
switch this message back to only being in -debug mode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66143 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/ExecutionEngine/JIT/JITEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/JIT/JITEmitter.cpp b/lib/ExecutionEngine/JIT/JITEmitter.cpp index 15ea90d84b..785bc76eb9 100644 --- a/lib/ExecutionEngine/JIT/JITEmitter.cpp +++ b/lib/ExecutionEngine/JIT/JITEmitter.cpp @@ -204,7 +204,7 @@ void *JITResolver::getFunctionStub(Function *F, bool empty) { TheJIT->updateGlobalMapping(F, Stub); } - cerr << "JIT: Stub emitted at [" << Stub << "] for function '" + DOUT << "JIT: Stub emitted at [" << Stub << "] for function '" << F->getName() << "'\n"; // Finally, keep track of the stub-to-Function mapping so that the |