diff options
author | Dmitry Vyukov <dvyukov@google.com> | 2012-12-21 10:47:48 +0000 |
---|---|---|
committer | Dmitry Vyukov <dvyukov@google.com> | 2012-12-21 10:47:48 +0000 |
commit | 11bb06039a87da7923eca8c9c2a3f339ac375d25 (patch) | |
tree | a02f432f6b386f612717ddd4cf5422b90d928d1a | |
parent | 1859251df8e2cf11dba881b88165250958078654 (diff) | |
download | bcm5719-llvm-11bb06039a87da7923eca8c9c2a3f339ac375d25.tar.gz bcm5719-llvm-11bb06039a87da7923eca8c9c2a3f339ac375d25.zip |
tsan: fix lint warnings
llvm-svn: 170877
-rw-r--r-- | compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc b/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc index 7e5023c29da..f24ad8873ac 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc +++ b/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc @@ -225,14 +225,15 @@ const char *InitializePlatform() { const uptr kMaxStackSize = 32 * 1024 * 1024; Report("WARNING: Program is run with unlimited stack size, which " "wouldn't work with ThreadSanitizer.\n"); - Report("Re-execing with stack size limited to %zd bytes.\n", kMaxStackSize); + Report("Re-execing with stack size limited to %zd bytes.\n", + kMaxStackSize); SetStackSizeLimitInBytes(kMaxStackSize); reexec = true; } if (getlim(RLIMIT_AS) != (rlim_t)-1) { - Report("WARNING: Program is run with limited virtual address space, which " - "wouldn't work with ThreadSanitizer.\n"); + Report("WARNING: Program is run with limited virtual address space," + " which wouldn't work with ThreadSanitizer.\n"); Report("Re-execing with unlimited virtual address space.\n"); setlim(RLIMIT_AS, -1); reexec = true; |