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 | 0c33d436b3f01dd3234761269df3c7f8d8c8d3cf (patch) | |
tree | 1386e41b1b3a3a758bc8ff2a88c83f127b144051 /llvm/lib/ExecutionEngine | |
parent | d02cb1dc2b58a1a95f3b467eddfe88c0f90acaac (diff) | |
download | bcm5719-llvm-0c33d436b3f01dd3234761269df3c7f8d8c8d3cf.tar.gz bcm5719-llvm-0c33d436b3f01dd3234761269df3c7f8d8c8d3cf.zip |
switch this message back to only being in -debug mode.
llvm-svn: 66143
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp b/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp index 15ea90d84bd..785bc76eb94 100644 --- a/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp +++ b/llvm/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 |