File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -88,8 +88,7 @@ void CalleeCache::computeClassMethodCalleesForClass(ClassDecl *CD) {
88
88
bool canCallUnknown = !calleesAreStaticallyKnowable (M, Method);
89
89
90
90
// Update the callees for this method and all the methods it
91
- // overrides by inserting the call graph node for the function
92
- // that this method invokes.
91
+ // overrides by adding this function to their lists.
93
92
do {
94
93
auto &TheCallees = getOrCreateCalleesForMethod (Method);
95
94
assert (TheCallees.getPointer () && " Unexpected null callees!" );
@@ -187,7 +186,7 @@ CalleeList CalleeCache::getCalleeListForCalleeKind(SILValue Callee) const {
187
186
switch (Callee->getKind ()) {
188
187
default :
189
188
assert (!isa<MethodInst>(Callee) &&
190
- " Unhandled method instruction in call graph construction !" );
189
+ " Unhandled method instruction in callee determination !" );
191
190
return CalleeList ();
192
191
193
192
case ValueKind::ThinToThickFunctionInst:
You can’t perform that action at this time.
0 commit comments