We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7868ed7 commit 67e46dfCopy full SHA for 67e46df
llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
@@ -3902,8 +3902,7 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
3902
ReturnType->getPrimitiveSizeInBits());
3903
3904
if (I.arg_size() == 3) {
3905
- FixedVectorType *AccumulatorType =
3906
- cast<FixedVectorType>(I.getOperand(0)->getType());
+ auto *AccumulatorType = cast<FixedVectorType>(I.getOperand(0)->getType());
3907
assert(AccumulatorType == ReturnType);
3908
}
3909
0 commit comments