Skip to content

Commit bb6d945

Browse files
authored
Merge pull request #21287 from davezarzycki/fix_silgen_typo
[SILGen] NFC: Fix typo in debug-only logic
2 parents 517ea83 + f87fcda commit bb6d945

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/SILGen/RValue.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ class RValue {
323323
return AnyFunctionType::equalParams(lParams, rParams) &&
324324
lf.getResult() == rf.getResult() &&
325325
lf->getExtInfo().withNoEscape(false) ==
326-
lf->getExtInfo().withNoEscape(false);
326+
rf->getExtInfo().withNoEscape(false);
327327
}
328328
}
329329
return false;

0 commit comments

Comments
 (0)