[llvm-commits] [compiler-rt] r170877 - /compiler-rt/trunk/lib/tsan/rtl/tsan_platform_linux.cc

Dmitry Vyukov dvyukov at google.com
Fri Dec 21 02:47:49 PST 2012


Author: dvyukov
Date: Fri Dec 21 04:47:48 2012
New Revision: 170877

URL: http://llvm.org/viewvc/llvm-project?rev=170877&view=rev
Log:
tsan: fix lint warnings

Modified:
    compiler-rt/trunk/lib/tsan/rtl/tsan_platform_linux.cc

Modified: compiler-rt/trunk/lib/tsan/rtl/tsan_platform_linux.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/rtl/tsan_platform_linux.cc?rev=170877&r1=170876&r2=170877&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_platform_linux.cc (original)
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_platform_linux.cc Fri Dec 21 04:47:48 2012
@@ -225,14 +225,15 @@
       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;





More information about the llvm-commits mailing list