aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2010-01-05 01:23:38 +0000
committerDavid Greene <greened@obbligato.org>2010-01-05 01:23:38 +0000
commiteaf7151a5cc8a95a75a6221752b53488c85d38c2 (patch)
tree1c89e9aa83f4e06694f63f757a7db603041f35e7 /lib/ExecutionEngine
parent3f220e2493e5f0a9789434597f64fac277d6f895 (diff)
downloadexternal_llvm-eaf7151a5cc8a95a75a6221752b53488c85d38c2.zip
external_llvm-eaf7151a5cc8a95a75a6221752b53488c85d38c2.tar.gz
external_llvm-eaf7151a5cc8a95a75a6221752b53488c85d38c2.tar.bz2
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92562 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r--lib/ExecutionEngine/JIT/JITMemoryManager.cpp2
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);
}