[compiler-rt] r248979 - [compiler-rt] Fix build (again) by wrapping lines to 80 chars (NFC)
Vedant Kumar via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 30 19:15:41 PDT 2015
Author: vedantk
Date: Wed Sep 30 21:15:40 2015
New Revision: 248979
URL: http://llvm.org/viewvc/llvm-project?rev=248979&view=rev
Log:
[compiler-rt] Fix build (again) by wrapping lines to 80 chars (NFC)
Modified:
compiler-rt/trunk/lib/asan/asan_fake_stack.cc
Modified: compiler-rt/trunk/lib/asan/asan_fake_stack.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_fake_stack.cc?rev=248979&r1=248978&r2=248979&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_fake_stack.cc (original)
+++ compiler-rt/trunk/lib/asan/asan_fake_stack.cc Wed Sep 30 21:15:40 2015
@@ -33,7 +33,8 @@ ALWAYS_INLINE void SetShadow(uptr ptr, u
if (class_id <= 6) {
for (uptr i = 0; i < (1U << class_id); i++) {
shadow[i] = magic;
- SanitizerBreakOptimization(nullptr); // Make sure this does not become memset.
+ // Make sure this does not become memset.
+ SanitizerBreakOptimization(nullptr);
}
} else {
// The size class is too big, it's cheaper to poison only size bytes.
More information about the llvm-commits
mailing list