File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
SwiftCompilerSources/Sources/SIL Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -265,6 +265,12 @@ extension MoveOnlyWrapperToCopyableValueInst : ConversionInstruction {
265265 public var canForwardOwnedValues : Bool { true }
266266}
267267
268+ extension MoveOnlyWrapperToCopyableBoxInst : ConversionInstruction {
269+ public var preservesRepresentation : Bool { true }
270+ public var canForwardGuaranteedValues : Bool { true }
271+ public var canForwardOwnedValues : Bool { true }
272+ }
273+
268274extension UpcastInst : ConversionInstruction {
269275 public var preservesRepresentation : Bool { true }
270276 public var canForwardGuaranteedValues : Bool { true }
@@ -386,12 +392,6 @@ extension MarkUnresolvedReferenceBindingInst : ForwardingInstruction {
386392 public var canForwardOwnedValues : Bool { true }
387393}
388394
389- extension MoveOnlyWrapperToCopyableBoxInst : ForwardingInstruction {
390- public var preservesRepresentation : Bool { true }
391- public var canForwardGuaranteedValues : Bool { true }
392- public var canForwardOwnedValues : Bool { true }
393- }
394-
395395extension LinearFunctionExtractInst : ForwardingInstruction {
396396 public var preservesRepresentation : Bool { true }
397397 public var canForwardGuaranteedValues : Bool { true }
You can’t perform that action at this time.
0 commit comments