[llvm-commits] [compiler-rt] r170120 - /compiler-rt/trunk/lib/asan/asan_rtl.cc
Alexey Samsonov
samsonov at google.com
Thu Dec 13 03:09:26 PST 2012
Author: samsonov
Date: Thu Dec 13 05:09:26 2012
New Revision: 170120
URL: http://llvm.org/viewvc/llvm-project?rev=170120&view=rev
Log:
[ASan] don't print memory stats on CheckFailed
Modified:
compiler-rt/trunk/lib/asan/asan_rtl.cc
Modified: compiler-rt/trunk/lib/asan/asan_rtl.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_rtl.cc?rev=170120&r1=170119&r2=170120&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_rtl.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_rtl.cc Thu Dec 13 05:09:26 2012
@@ -54,7 +54,7 @@
file, line, cond, (uptr)v1, (uptr)v2);
// FIXME: check for infinite recursion without a thread-local counter here.
PRINT_CURRENT_STACK();
- ShowStatsAndAbort();
+ Die();
}
// -------------------------- Flags ------------------------- {{{1
More information about the llvm-commits
mailing list