summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Schmidt <wschmidt@linux.vnet.ibm.com>2015-12-14 16:26:00 +0000
committerBill Schmidt <wschmidt@linux.vnet.ibm.com>2015-12-14 16:26:00 +0000
commite193989c17e34d3018afeadd7a5af0d389631c29 (patch)
tree6f3a7a346c6c5eb7628ad59dc93121d4223af31e
parent9bd0dad92684536351ef2e7ea5ad88e14630234e (diff)
downloadbcm5719-llvm-e193989c17e34d3018afeadd7a5af0d389631c29.tar.gz
bcm5719-llvm-e193989c17e34d3018afeadd7a5af0d389631c29.zip
[TSAN, PPC64] Fix obvious typo of supported virtual memory sizes
llvm-svn: 255507
-rw-r--r--compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc b/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc
index 48fc0f169d1..6602561186c 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
OpenPOWER on IntegriCloud