[asan] fix confusing indentation

llvm-svn: 175033
This commit is contained in:
Kostya Serebryany
2013-02-13 05:14:12 +00:00
parent bbbb857022
commit caf11af9d3

View File

@@ -219,7 +219,8 @@ static ShadowMapping getShadowMapping(const Module &M, int LongSize,
if (!ZeroBaseShadow && ClShort64BitOffset && IsX86_64 && !IsMacOSX) { if (!ZeroBaseShadow && ClShort64BitOffset && IsX86_64 && !IsMacOSX) {
assert(LongSize == 64); assert(LongSize == 64);
Mapping.Offset = kDefaultShort64bitShadowOffset; Mapping.Offset = kDefaultShort64bitShadowOffset;
} if (!ZeroBaseShadow && ClMappingOffsetLog >= 0) { }
if (!ZeroBaseShadow && ClMappingOffsetLog >= 0) {
// Zero offset log is the special case. // Zero offset log is the special case.
Mapping.Offset = (ClMappingOffsetLog == 0) ? 0 : 1ULL << ClMappingOffsetLog; Mapping.Offset = (ClMappingOffsetLog == 0) ? 0 : 1ULL << ClMappingOffsetLog;
} }