diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-08-23 06:35:02 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-08-23 06:35:02 +0000 |
| commit | 4dc3edde9ffc8d422fc051f85b3fd1adf691c738 (patch) | |
| tree | c89a97cef144f23560e0216a23da762ed328d675 /llvm/lib/ExecutionEngine/ExecutionEngine.cpp | |
| parent | dbbdc7926775515f38a4f3834ed221bffd3e2115 (diff) | |
| download | llvm-4dc3edde9ffc8d422fc051f85b3fd1adf691c738.zip llvm-4dc3edde9ffc8d422fc051f85b3fd1adf691c738.tar.gz llvm-4dc3edde9ffc8d422fc051f85b3fd1adf691c738.tar.bz2 | |
remove a few DOUTs here and there.
llvm-svn: 79832
Diffstat (limited to 'llvm/lib/ExecutionEngine/ExecutionEngine.cpp')
| -rw-r--r-- | llvm/lib/ExecutionEngine/ExecutionEngine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp index 644740f..9fbee9c 100644 --- a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp @@ -243,13 +243,13 @@ static void *CreateArgv(LLVMContext &C, ExecutionEngine *EE, unsigned PtrSize = EE->getTargetData()->getPointerSize(); char *Result = new char[(InputArgv.size()+1)*PtrSize]; - DOUT << "JIT: ARGV = " << (void*)Result << "\n"; + DEBUG(errs() << "JIT: ARGV = " << (void*)Result << "\n"); const Type *SBytePtr = PointerType::getUnqual(Type::getInt8Ty(C)); for (unsigned i = 0; i != InputArgv.size(); ++i) { unsigned Size = InputArgv[i].size()+1; char *Dest = new char[Size]; - DOUT << "JIT: ARGV[" << i << "] = " << (void*)Dest << "\n"; + DEBUG(errs() << "JIT: ARGV[" << i << "] = " << (void*)Dest << "\n"); std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest); Dest[Size-1] = 0; @@ -899,7 +899,7 @@ void ExecutionEngine::LoadValueFromMemory(GenericValue &Result, // specified memory location... // void ExecutionEngine::InitializeMemory(const Constant *Init, void *Addr) { - DOUT << "JIT: Initializing " << Addr << " "; + DEBUG(errs() << "JIT: Initializing " << Addr << " "); DEBUG(Init->dump()); if (isa<UndefValue>(Init)) { return; |
