diff options
author | Dmitry Vyukov <dvyukov@google.com> | 2013-01-29 09:39:58 +0000 |
---|---|---|
committer | Dmitry Vyukov <dvyukov@google.com> | 2013-01-29 09:39:58 +0000 |
commit | 0632dd410c7b4c415bfdd47fae16d44f47fecf1e (patch) | |
tree | 10c8183f4f86e3bc6e117dedb4f065a55b0447c5 /compiler-rt | |
parent | 7943b6900204dbb13d200cab8f0d1e05d7000470 (diff) | |
download | bcm5719-llvm-0632dd410c7b4c415bfdd47fae16d44f47fecf1e.tar.gz bcm5719-llvm-0632dd410c7b4c415bfdd47fae16d44f47fecf1e.zip |
tsan: fix the message (tsan is not asan)
llvm-svn: 173784
Diffstat (limited to 'compiler-rt')
-rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_posix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc b/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc index 32657838600..859be5a7d60 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc @@ -58,7 +58,7 @@ void *MmapOrDie(uptr size, const char *mem_type) { if (recursion_count) { // The Report() and CHECK calls below may call mmap recursively and fail. // If we went into recursion, just die. - RawWrite("AddressSanitizer is unable to mmap\n"); + RawWrite("ERROR: Failed to mmap\n"); Die(); } recursion_count++; |