[llvm-commits] [llvm] r92562 - /llvm/trunk/lib/ExecutionEngine/JIT/JITMemoryManager.cpp

David Greene greened at obbligato.org
Mon Jan 4 17:23:39 PST 2010


Author: greened
Date: Mon Jan  4 19:23:38 2010
New Revision: 92562

URL: http://llvm.org/viewvc/llvm-project?rev=92562&view=rev
Log:
Change errs() to dbgs().

Modified:
    llvm/trunk/lib/ExecutionEngine/JIT/JITMemoryManager.cpp

Modified: llvm/trunk/lib/ExecutionEngine/JIT/JITMemoryManager.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/JIT/JITMemoryManager.cpp?rev=92562&r1=92561&r2=92562&view=diff

==============================================================================
--- llvm/trunk/lib/ExecutionEngine/JIT/JITMemoryManager.cpp (original)
+++ llvm/trunk/lib/ExecutionEngine/JIT/JITMemoryManager.cpp Mon Jan  4 19:23:38 2010
@@ -352,7 +352,7 @@
       // 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);
       }
 





More information about the llvm-commits mailing list