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 | bd8c8afe1b5439792d985da7c6e5949d8dc3f552 (patch) | |
tree | 1c89e9aa83f4e06694f63f757a7db603041f35e7 | |
parent | c9ec9931d834cb3b9774429fae96fb8db2736993 (diff) | |
download | external_llvm-bd8c8afe1b5439792d985da7c6e5949d8dc3f552.zip external_llvm-bd8c8afe1b5439792d985da7c6e5949d8dc3f552.tar.gz external_llvm-bd8c8afe1b5439792d985da7c6e5949d8dc3f552.tar.bz2 |
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92562 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/ExecutionEngine/JIT/JITMemoryManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/JIT/JITMemoryManager.cpp b/lib/ExecutionEngine/JIT/JITMemoryManager.cpp index 80cb999..a17caa17 100644 --- a/lib/ExecutionEngine/JIT/JITMemoryManager.cpp +++ b/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); } |