@@ -350,7 +350,7 @@ extension ValueDefUseWalker {
350350 }
351351 case is BeginBorrowInst , is CopyValueInst , is MoveValueInst ,
352352 is UpcastInst , is UncheckedRefCastInst , is EndCOWMutationInst ,
353- is RefToBridgeObjectInst , is BridgeObjectToRefInst , is MarkMustCheckInst :
353+ is RefToBridgeObjectInst , is BridgeObjectToRefInst , is MarkUnresolvedNonCopyableValueInst :
354354 return walkDownUses ( ofValue: ( instruction as! SingleValueInstruction ) , path: path)
355355 case let mdi as MarkDependenceInst :
356356 if operand. index == 0 {
@@ -492,7 +492,7 @@ extension AddressDefUseWalker {
492492 return walkDownUses ( ofAddress: ia, path: subPath. push ( . anyIndexedElement, index: 0 ) )
493493 }
494494 return walkDownUses ( ofAddress: ia, path: path)
495- case let mmc as MarkMustCheckInst :
495+ case let mmc as MarkUnresolvedNonCopyableValueInst :
496496 return walkDownUses ( ofAddress: mmc, path: path)
497497 case let ba as BeginAccessInst :
498498 // Don't treat `end_access` as leaf-use. Just ignore it.
@@ -656,7 +656,7 @@ extension ValueUseDefWalker {
656656 return walkUp ( value: oer. existential, path: path. push ( . existential, index: 0 ) )
657657 case is BeginBorrowInst , is CopyValueInst , is MoveValueInst ,
658658 is UpcastInst , is UncheckedRefCastInst , is EndCOWMutationInst ,
659- is RefToBridgeObjectInst , is BridgeObjectToRefInst , is MarkMustCheckInst :
659+ is RefToBridgeObjectInst , is BridgeObjectToRefInst , is MarkUnresolvedNonCopyableValueInst :
660660 return walkUp ( value: ( def as! Instruction ) . operands [ 0 ] . value, path: path)
661661 case let arg as BlockArgument :
662662 if arg. isPhiArgument {
@@ -743,7 +743,7 @@ extension AddressUseDefWalker {
743743 path: path. push ( . enumCase, index: ( def as! EnumInstruction ) . caseIndex) )
744744 case is InitExistentialAddrInst , is OpenExistentialAddrInst :
745745 return walkUp ( address: ( def as! Instruction ) . operands [ 0 ] . value, path: path. push ( . existential, index: 0 ) )
746- case is BeginAccessInst , is MarkMustCheckInst :
746+ case is BeginAccessInst , is MarkUnresolvedNonCopyableValueInst :
747747 return walkUp ( address: ( def as! Instruction ) . operands [ 0 ] . value, path: path)
748748 case let ia as IndexAddrInst :
749749 if let idx = ia. constantSmallIndex {
0 commit comments