Skip to content

Commit e906b6c

Browse files
thurstondvitalybuka
authored andcommitted
clang-format
1 parent bb20ee1 commit e906b6c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3904,9 +3904,10 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
39043904

39053905
// Second-last operand is the lane number (for vst{2,3,4}lane)
39063906
if (useLane) {
3907-
skipTrailingOperands ++;
3907+
skipTrailingOperands++;
39083908
assert(numArgOperands >= (int)skipTrailingOperands);
3909-
assert(isa<IntegerType>(I.getArgOperand(numArgOperands - skipTrailingOperands)->getType()));
3909+
assert(isa<IntegerType>(
3910+
I.getArgOperand(numArgOperands - skipTrailingOperands)->getType()));
39103911
}
39113912

39123913
SmallVector<Value *, 8> ShadowArgs;
@@ -3935,7 +3936,8 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
39353936
Type *OutputShadowTy = getShadowTy(OutputVectorTy);
39363937

39373938
if (useLane)
3938-
ShadowArgs.append(1, I.getArgOperand(numArgOperands - skipTrailingOperands));
3939+
ShadowArgs.append(1,
3940+
I.getArgOperand(numArgOperands - skipTrailingOperands));
39393941

39403942
Value *OutputShadowPtr, *OutputOriginPtr;
39413943
// AArch64 NEON does not need alignment (unless OS requires it)

0 commit comments

Comments
 (0)