[TSAN, PPC64] Fix obvious typo of supported virtual memory sizes

llvm-svn: 255507
This commit is contained in:
Bill Schmidt 2015-12-14 16:26:00 +00:00
parent 9bd0dad926
commit e193989c17
1 changed files with 1 additions and 1 deletions

View File

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