[llvm-commits] [compiler-rt] r169381 - /compiler-rt/trunk/lib/asan/asan_interceptors.cc
Kostya Serebryany
kcc at google.com
Wed Dec 5 05:39:29 PST 2012
Author: kcc
Date: Wed Dec 5 07:39:29 2012
New Revision: 169381
URL: http://llvm.org/viewvc/llvm-project?rev=169381&view=rev
Log:
[asan] undo the debug printf
Modified:
compiler-rt/trunk/lib/asan/asan_interceptors.cc
Modified: compiler-rt/trunk/lib/asan/asan_interceptors.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_interceptors.cc?rev=169381&r1=169380&r2=169381&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_interceptors.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_interceptors.cc Wed Dec 5 07:39:29 2012
@@ -179,8 +179,6 @@
#if ASAN_INTERCEPT___CXA_THROW
INTERCEPTOR(void, __cxa_throw, void *a, void *b, void *c) {
- Printf("__asan's __cxa_throw %p; REAL(__cxa_throw) %p PLAIN %p\n",
- __interceptor___cxa_throw, REAL(__cxa_throw), __cxa_throw);
CHECK(REAL(__cxa_throw));
__asan_handle_no_return();
REAL(__cxa_throw)(a, b, c);
More information about the llvm-commits
mailing list