File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
SwiftCompilerSources/Sources/SIL Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -976,6 +976,10 @@ class MarkDependenceInst : SingleValueInstruction {
976976 public func resolveToNonEscaping( ) {
977977 bridged. MarkDependenceInst_resolveToNonEscaping ( )
978978 }
979+
980+ public func settleToEscaping( ) {
981+ bridged. MarkDependenceInst_settleToEscaping ( )
982+ }
979983}
980984
981985final public class RefToBridgeObjectInst : SingleValueInstruction {
Original file line number Diff line number Diff line change @@ -788,6 +788,7 @@ struct BridgedInstruction {
788788 BRIDGED_INLINE SwiftInt AssignInst_getAssignOwnership () const ;
789789 BRIDGED_INLINE MarkDependenceKind MarkDependenceInst_dependenceKind () const ;
790790 BRIDGED_INLINE void MarkDependenceInst_resolveToNonEscaping () const ;
791+ BRIDGED_INLINE void MarkDependenceInst_settleToEscaping () const ;
791792 BRIDGED_INLINE SwiftInt BeginAccessInst_getAccessKind () const ;
792793 BRIDGED_INLINE bool BeginAccessInst_isStatic () const ;
793794 BRIDGED_INLINE bool BeginAccessInst_isUnsafe () const ;
Original file line number Diff line number Diff line change @@ -1387,6 +1387,10 @@ void BridgedInstruction::MarkDependenceInst_resolveToNonEscaping() const {
13871387 getAs<swift::MarkDependenceInst>()->resolveToNonEscaping ();
13881388}
13891389
1390+ void BridgedInstruction::MarkDependenceInst_settleToEscaping () const {
1391+ getAs<swift::MarkDependenceInst>()->settleToEscaping ();
1392+ }
1393+
13901394SwiftInt BridgedInstruction::BeginAccessInst_getAccessKind () const {
13911395 return (SwiftInt)getAs<swift::BeginAccessInst>()->getAccessKind ();
13921396}
You can’t perform that action at this time.
0 commit comments