[asan] fix confusing indentation

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175033 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Kostya Serebryany 2013-02-13 05:14:12 +00:00
parent 519e1475d6
commit 39f02940ba

View File

@ -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;
}