tsan: fix the message (tsan is not asan)

llvm-svn: 173784
This commit is contained in:
Dmitry Vyukov 2013-01-29 09:39:58 +00:00
parent 7943b69002
commit 0632dd410c
1 changed files with 1 additions and 1 deletions

View File

@ -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++;