File tree 1 file changed +5
-3
lines changed
llvm/lib/Transforms/Instrumentation 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -3904,9 +3904,10 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
3904
3904
3905
3905
// Second-last operand is the lane number (for vst{2,3,4}lane)
3906
3906
if (useLane) {
3907
- skipTrailingOperands ++;
3907
+ skipTrailingOperands++;
3908
3908
assert (numArgOperands >= (int )skipTrailingOperands);
3909
- assert (isa<IntegerType>(I.getArgOperand (numArgOperands - skipTrailingOperands)->getType ()));
3909
+ assert (isa<IntegerType>(
3910
+ I.getArgOperand (numArgOperands - skipTrailingOperands)->getType ()));
3910
3911
}
3911
3912
3912
3913
SmallVector<Value *, 8 > ShadowArgs;
@@ -3935,7 +3936,8 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
3935
3936
Type *OutputShadowTy = getShadowTy (OutputVectorTy);
3936
3937
3937
3938
if (useLane)
3938
- ShadowArgs.append (1 , I.getArgOperand (numArgOperands - skipTrailingOperands));
3939
+ ShadowArgs.append (1 ,
3940
+ I.getArgOperand (numArgOperands - skipTrailingOperands));
3939
3941
3940
3942
Value *OutputShadowPtr, *OutputOriginPtr;
3941
3943
// AArch64 NEON does not need alignment (unless OS requires it)
You can’t perform that action at this time.
0 commit comments