From e193989c17e34d3018afeadd7a5af0d389631c29 Mon Sep 17 00:00:00 2001 From: Bill Schmidt Date: Mon, 14 Dec 2015 16:26:00 +0000 Subject: [PATCH] [TSAN, PPC64] Fix obvious typo of supported virtual memory sizes llvm-svn: 255507 --- compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc b/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc index 48fc0f169d1d..6602561186ce 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc +++ b/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc @@ -254,7 +254,7 @@ void InitializePlatformEarly() { #elif defined(__powerpc64__) if (vmaSize != 44 && vmaSize != 46) { Printf("FATAL: ThreadSanitizer: unsupported VMA range\n"); - Printf("FATAL: Found %d - Supported 42 and 46\n", vmaSize); + Printf("FATAL: Found %d - Supported 44 and 46\n", vmaSize); Die(); } #endif