Skip to content

Commit 67e46df

Browse files
committed
Fix variable type style
1 parent 7868ed7 commit 67e46df

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3902,8 +3902,7 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
39023902
ReturnType->getPrimitiveSizeInBits());
39033903

39043904
if (I.arg_size() == 3) {
3905-
FixedVectorType *AccumulatorType =
3906-
cast<FixedVectorType>(I.getOperand(0)->getType());
3905+
auto *AccumulatorType = cast<FixedVectorType>(I.getOperand(0)->getType());
39073906
assert(AccumulatorType == ReturnType);
39083907
}
39093908

0 commit comments

Comments
 (0)