diff options
| author | Bill Schmidt <wschmidt@linux.vnet.ibm.com> | 2015-12-14 16:26:00 +0000 | 
|---|---|---|
| committer | Bill Schmidt <wschmidt@linux.vnet.ibm.com> | 2015-12-14 16:26:00 +0000 | 
| commit | e193989c17e34d3018afeadd7a5af0d389631c29 (patch) | |
| tree | 6f3a7a346c6c5eb7628ad59dc93121d4223af31e | |
| parent | 9bd0dad92684536351ef2e7ea5ad88e14630234e (diff) | |
| download | bcm5719-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.cc | 2 | 
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  | 

