[llvm-commits] [compiler-rt] r148474 - /compiler-rt/trunk/lib/asan/asan_procmaps.h
Alexander Potapenko
glider at google.com
Thu Jan 19 05:34:16 PST 2012
Author: glider
Date: Thu Jan 19 07:34:15 2012
New Revision: 148474
URL: http://llvm.org/viewvc/llvm-project?rev=148474&view=rev
Log:
Remove a debugging Report() call.
Modified:
compiler-rt/trunk/lib/asan/asan_procmaps.h
Modified: compiler-rt/trunk/lib/asan/asan_procmaps.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_procmaps.h?rev=148474&r1=148473&r2=148474&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_procmaps.h (original)
+++ compiler-rt/trunk/lib/asan/asan_procmaps.h Thu Jan 19 07:34:15 2012
@@ -47,7 +47,6 @@
uintptr_t start, end, file_offset;
while (Next(&start, &end, &file_offset,
filename, filename_size)) {
- Report("%p--%p, %s\n", start, end, filename);
if (addr >= start && addr < end) {
*offset = (addr - start) + file_offset;
return true;
More information about the llvm-commits
mailing list