[llvm-commits] [compiler-rt] r153514 - /compiler-rt/trunk/lib/asan/asan_allocator.cc

Alexander Potapenko glider at google.com
Tue Mar 27 09:37:17 PDT 2012


Author: glider
Date: Tue Mar 27 11:37:16 2012
New Revision: 153514

URL: http://llvm.org/viewvc/llvm-project?rev=153514&view=rev
Log:
Log the allocator messages at a higher verbosity level.

Modified:
    compiler-rt/trunk/lib/asan/asan_allocator.cc

Modified: compiler-rt/trunk/lib/asan/asan_allocator.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_allocator.cc?rev=153514&r1=153513&r2=153514&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_allocator.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_allocator.cc Tue Mar 27 11:37:16 2012
@@ -631,7 +631,7 @@
   CHECK(size_to_allocate >= needed_size);
   CHECK(IsAligned(size_to_allocate, REDZONE));
 
-  if (FLAG_v >= 2) {
+  if (FLAG_v >= 3) {
     Printf("Allocate align: %zu size: %zu class: %u real: %zu\n",
          alignment, size, size_class, size_to_allocate);
   }





More information about the llvm-commits mailing list