Removing a non-intentional debug output that got committed in r263695.

llvm-svn: 263698
This commit is contained in:
Kuba Brecka 2016-03-17 09:27:40 +00:00
parent aa1ea69c71
commit 493028e8e2
1 changed files with 0 additions and 3 deletions

View File

@ -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 "