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 5940fcc commit 3390a58Copy full SHA for 3390a58
lib/SILAnalysis/AliasAnalysis.cpp
@@ -109,7 +109,7 @@ static bool isMultiUnderlyingObjectValue(SILValue V) {
109
return true;
110
// We are only interested in basic block SILArguments as those are the
111
// ones we can collect all the possible incoming values.
112
- if (SILArgument *SA = dyn_cast<SILArgument>(V))
+ if (auto *SA = dyn_cast<SILArgument>(V))
113
if (!SA->isFunctionArg())
114
115
return false;
0 commit comments