diff options
author | Kostya Serebryany <kcc@google.com> | 2013-02-13 05:14:12 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2013-02-13 05:14:12 +0000 |
commit | 39f02940ba085af79011f7e9095bf9902cd0fa6f (patch) | |
tree | 775d0d5ce51e8b9f9ebfbcb930b9f3d1b3526566 | |
parent | 519e1475d64d80f4632296318b3a5240d4f70a72 (diff) |
[asan] fix confusing indentation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175033 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Instrumentation/AddressSanitizer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/lib/Transforms/Instrumentation/AddressSanitizer.cpp index 4950d838b2..b97e3425bc 100644 --- a/lib/Transforms/Instrumentation/AddressSanitizer.cpp +++ b/lib/Transforms/Instrumentation/AddressSanitizer.cpp @@ -219,7 +219,8 @@ static ShadowMapping getShadowMapping(const Module &M, int LongSize, if (!ZeroBaseShadow && ClShort64BitOffset && IsX86_64 && !IsMacOSX) { assert(LongSize == 64); Mapping.Offset = kDefaultShort64bitShadowOffset; - } if (!ZeroBaseShadow && ClMappingOffsetLog >= 0) { + } + if (!ZeroBaseShadow && ClMappingOffsetLog >= 0) { // Zero offset log is the special case. Mapping.Offset = (ClMappingOffsetLog == 0) ? 0 : 1ULL << ClMappingOffsetLog; } |