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 8ab1e2d commit 44ddc5bCopy full SHA for 44ddc5b
include/swift/SILAnalysis/AliasAnalysis.h
@@ -70,7 +70,9 @@ class AliasAnalysis : public SILAnalysis {
70
71
SideEffectAnalysis *getSideEffectAnalysis() const { return SEA; }
72
73
- /// Perform alias analysis on SILValues with multiple underlying objects.
+ /// Perform alias queries to see if \p V1, \p V2 can refer to the same value.
74
+ /// \p V1 and \p V2 may be SILValues with multiple underlying objects. e.g.
75
+ /// SILArgument. \returns MayAlias or NoAlias.
76
AliasResult handleMultiUnderlyingObjectAlias(SILValue V1, SILValue V2);
77
78
/// Perform an alias query to see if V1, V2 refer to the same values.
0 commit comments