summaryrefslogtreecommitdiffstats
path: root/compiler-rt
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2013-01-29 09:39:58 +0000
committerDmitry Vyukov <dvyukov@google.com>2013-01-29 09:39:58 +0000
commit0632dd410c7b4c415bfdd47fae16d44f47fecf1e (patch)
tree10c8183f4f86e3bc6e117dedb4f065a55b0447c5 /compiler-rt
parent7943b6900204dbb13d200cab8f0d1e05d7000470 (diff)
downloadbcm5719-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.cc2
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++;
OpenPOWER on IntegriCloud