Skip to content

Commit 3390a58

Browse files
committed
Refactor in alias analysis. NFC
1 parent 5940fcc commit 3390a58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/SILAnalysis/AliasAnalysis.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ static bool isMultiUnderlyingObjectValue(SILValue V) {
109109
return true;
110110
// We are only interested in basic block SILArguments as those are the
111111
// ones we can collect all the possible incoming values.
112-
if (SILArgument *SA = dyn_cast<SILArgument>(V))
112+
if (auto *SA = dyn_cast<SILArgument>(V))
113113
if (!SA->isFunctionArg())
114114
return true;
115115
return false;

0 commit comments

Comments
 (0)