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/JIT/JITMemoryManager.cpp | |
parent | dbbdc7926775515f38a4f3834ed221bffd3e2115 (diff) | |
download | bcm5719-llvm-4dc3edde9ffc8d422fc051f85b3fd1adf691c738.tar.gz bcm5719-llvm-4dc3edde9ffc8d422fc051f85b3fd1adf691c738.zip |
remove a few DOUTs here and there.
llvm-svn: 79832
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp b/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp index 57dd45813e9..e750768d250 100644 --- a/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp +++ b/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp @@ -357,7 +357,7 @@ namespace { // another block of memory and add it to the free list. if (largest < ActualSize || largest <= FreeRangeHeader::getMinBlockSize()) { - DOUT << "JIT: Allocating another slab of memory for function."; + DEBUG(errs() << "JIT: Allocating another slab of memory for function."); candidateBlock = allocateNewCodeSlab((size_t)ActualSize); } |