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 {
265
265
public var canForwardOwnedValues : Bool { true }
266
266
}
267
267
268
+ extension MoveOnlyWrapperToCopyableBoxInst : ConversionInstruction {
269
+ public var preservesRepresentation : Bool { true }
270
+ public var canForwardGuaranteedValues : Bool { true }
271
+ public var canForwardOwnedValues : Bool { true }
272
+ }
273
+
268
274
extension UpcastInst : ConversionInstruction {
269
275
public var preservesRepresentation : Bool { true }
270
276
public var canForwardGuaranteedValues : Bool { true }
@@ -386,12 +392,6 @@ extension MarkUnresolvedReferenceBindingInst : ForwardingInstruction {
386
392
public var canForwardOwnedValues : Bool { true }
387
393
}
388
394
389
- extension MoveOnlyWrapperToCopyableBoxInst : ForwardingInstruction {
390
- public var preservesRepresentation : Bool { true }
391
- public var canForwardGuaranteedValues : Bool { true }
392
- public var canForwardOwnedValues : Bool { true }
393
- }
394
-
395
395
extension LinearFunctionExtractInst : ForwardingInstruction {
396
396
public var preservesRepresentation : Bool { true }
397
397
public var canForwardGuaranteedValues : Bool { true }
You can’t perform that action at this time.
0 commit comments