[compiler-rt] r226884 - Fix the extra whitespace from r226878.

Kuba Brecka kuba.brecka at gmail.com
Thu Jan 22 16:14:23 PST 2015


Author: kuba.brecka
Date: Thu Jan 22 18:14:22 2015
New Revision: 226884

URL: http://llvm.org/viewvc/llvm-project?rev=226884&view=rev
Log:
Fix the extra whitespace from r226878.


Modified:
    compiler-rt/trunk/lib/asan/asan_report.cc

Modified: compiler-rt/trunk/lib/asan/asan_report.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_report.cc?rev=226884&r1=226883&r2=226884&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_report.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_report.cc Thu Jan 22 18:14:22 2015
@@ -938,7 +938,7 @@ using namespace __asan;  // NOLINT
 void __asan_report_error(uptr pc, uptr bp, uptr sp, uptr addr, int is_write,
                          uptr access_size) {
   ENABLE_FRAME_POINTER;
-  
+
   // Determine the error type.
   const char *bug_descr = "unknown-crash";
   if (AddrIsInMem(addr)) {





More information about the llvm-commits mailing list