[compiler-rt] r314441 - [asan] Fix the bug number in the error message.
Evgeniy Stepanov via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 28 11:19:44 PDT 2017
Author: eugenis
Date: Thu Sep 28 11:19:44 2017
New Revision: 314441
URL: http://llvm.org/viewvc/llvm-project?rev=314441&view=rev
Log:
[asan] Fix the bug number in the error message.
The link in the "Shadow memory range interleaves with an existing
memory mapping" error message was pointing to the wrong bug.
Modified:
compiler-rt/trunk/lib/asan/asan_shadow_setup.cc
Modified: compiler-rt/trunk/lib/asan/asan_shadow_setup.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_shadow_setup.cc?rev=314441&r1=314440&r2=314441&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_shadow_setup.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_shadow_setup.cc Thu Sep 28 11:19:44 2017
@@ -85,7 +85,7 @@ static void MaybeReportLinuxPIEBug() {
#if SANITIZER_LINUX && (defined(__x86_64__) || defined(__aarch64__))
Report("This might be related to ELF_ET_DYN_BASE change in Linux 4.12.\n");
Report(
- "See https://github.com/google/sanitizers/issues/837 for possible "
+ "See https://github.com/google/sanitizers/issues/856 for possible "
"workarounds.\n");
#endif
}
More information about the llvm-commits
mailing list