diff options
author | David Greene <greened@obbligato.org> | 2010-01-05 01:23:38 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-01-05 01:23:38 +0000 |
commit | 2baba9643c7a9e87b108dd76fb7c69eeaf57677f (patch) | |
tree | 606a46a81539fa41f10d25f25af909c912273b33 /llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp | |
parent | 85814ac1b7cd28dab47bf894e3389fe1cf799ddd (diff) | |
download | bcm5719-llvm-2baba9643c7a9e87b108dd76fb7c69eeaf57677f.tar.gz bcm5719-llvm-2baba9643c7a9e87b108dd76fb7c69eeaf57677f.zip |
Change errs() to dbgs().
llvm-svn: 92562
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 80cb999a90a..a17caa17f4d 100644 --- a/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp +++ b/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp @@ -352,7 +352,7 @@ namespace { // another block of memory and add it to the free list. if (largest < ActualSize || largest <= FreeRangeHeader::getMinBlockSize()) { - DEBUG(errs() << "JIT: Allocating another slab of memory for function."); + DEBUG(dbgs() << "JIT: Allocating another slab of memory for function."); candidateBlock = allocateNewCodeSlab((size_t)ActualSize); } |