[compiler-rt] r176937 - Break a >80 char line.

Evgeniy Stepanov eugeni.stepanov at gmail.com
Wed Mar 13 01:17:39 PDT 2013


Author: eugenis
Date: Wed Mar 13 03:17:39 2013
New Revision: 176937

URL: http://llvm.org/viewvc/llvm-project?rev=176937&view=rev
Log:
Break a >80 char line.

Modified:
    compiler-rt/trunk/lib/sanitizer_common/sanitizer_printf.cc

Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_printf.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_printf.cc?rev=176937&r1=176936&r2=176937&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_printf.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_printf.cc Wed Mar 13 03:17:39 2013
@@ -230,7 +230,8 @@ void Report(const char *format, ...) {
       if (use_mmap) {
         RAW_CHECK_MSG(needed_length < kLen, "Buffer in Report is too short!\n");
       } else {
-        // The error message doesn't fit into the local buffer - allocate a bigger one.
+        // The error message doesn't fit into the local buffer - allocate a
+        // bigger one.
         buffer = (char*)MmapOrDie(kLen, "Report");
         cur_size = kLen;
         continue;





More information about the llvm-commits mailing list