summaryrefslogtreecommitdiff
path: root/lib/msan
diff options
context:
space:
mode:
authorVitaly Buka <vitalybuka@google.com>2019-09-11 21:33:06 +0000
committerVitaly Buka <vitalybuka@google.com>2019-09-11 21:33:06 +0000
commit8915a0b66469d3052fdbe39268c897c85076359a (patch)
tree7db0c76bc1986073d125f02bd19e51c1afb2da40 /lib/msan
parent970b233bf71d5da683105c2a841c0c4cb2641ee6 (diff)
downloadcompiler-rt-8915a0b66469d3052fdbe39268c897c85076359a.tar.gz
Update compiler-rt cpplint.py
https://github.com/cpplint/cpplint/commit/adb3500107f409ac5491188ae652ac3f4d03d9d3 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@371675 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/msan')
-rw-r--r--lib/msan/msan_linux.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msan/msan_linux.cpp b/lib/msan/msan_linux.cpp
index 26a15a4bc..d61e9dee3 100644
--- a/lib/msan/msan_linux.cpp
+++ b/lib/msan/msan_linux.cpp
@@ -125,7 +125,7 @@ bool InitShadow(bool init_origins) {
for (unsigned i = 0; i < kMemoryLayoutSize; ++i) {
uptr start = kMemoryLayout[i].start;
uptr end = kMemoryLayout[i].end;
- uptr size= end - start;
+ uptr size = end - start;
MappingDesc::Type type = kMemoryLayout[i].type;
// Check if the segment should be mapped based on platform constraints.