[compiler-rt] r263698 - Removing a non-intentional debug output that got committed in r263695.
Kuba Brecka via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 17 02:27:40 PDT 2016
Author: kuba.brecka
Date: Thu Mar 17 04:27:40 2016
New Revision: 263698
URL: http://llvm.org/viewvc/llvm-project?rev=263698&view=rev
Log:
Removing a non-intentional debug output that got committed in r263695.
Modified:
compiler-rt/trunk/lib/sanitizer_common/sanitizer_mac.cc
Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_mac.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_mac.cc?rev=263698&r1=263697&r2=263698&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_mac.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_mac.cc Thu Mar 17 04:27:40 2016
@@ -632,9 +632,6 @@ void MaybeReexec() {
Dl_info info_pthread_create;
void *dlopen_addr = dlsym(RTLD_DEFAULT, "pthread_create");
CHECK(dladdr(dlopen_addr, &info_pthread_create));
- Report("info.dli_fname = %p = %s, info_pthread_create.dli_fname = %p = %s\n",
- info.dli_fname, info.dli_fname, info_pthread_create.dli_fname,
- info_pthread_create.dli_fname);
if (internal_strcmp(info.dli_fname, info_pthread_create.dli_fname) != 0) {
Report(
"ERROR: Interceptors are not working. This may be because %s is "
More information about the llvm-commits
mailing list