File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lib/SILOptimizer/Mandatory Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ using namespace swift::PartitionPrimitives;
45
45
// / see if the ActorIsolationChecker determined it crossed isolation. It's
46
46
// / possible this is brittle and a more nuanced check is needed, but this
47
47
// / suffices for all cases tested so far.
48
- static bool SILApplyCrossesIsolation (const SILInstruction *inst) {
48
+ static bool isIsolationBoundaryCrossingApply (const SILInstruction *inst) {
49
49
if (ApplyExpr *apply = inst->getLoc ().getAsASTNode <ApplyExpr>())
50
50
return apply->getIsolationCrossing ().has_value ();
51
51
@@ -762,7 +762,7 @@ class PartitionOpTranslator {
762
762
void translateSILApply (SILInstruction *applyInst) {
763
763
// If this apply does not cross isolation domains, it has normal
764
764
// non-transferring multi-assignment semantics
765
- if (!SILApplyCrossesIsolation (applyInst)) {
765
+ if (!isIsolationBoundaryCrossingApply (applyInst)) {
766
766
SILMultiAssignOptions options;
767
767
if (auto fas = FullApplySite::isa (applyInst)) {
768
768
if (fas.hasSelfArgument ()) {
You can’t perform that action at this time.
0 commit comments