File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
llvm/lib/Transforms/Instrumentation Expand file tree Collapse file tree 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> {
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)
You can’t perform that action at this time.
0 commit comments