Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ final class OnrampVerificationViewModel<P: PhoneVerifying, E: EmailVerifying>: V
}
}

// `@_optimize(none)` skips the SIL optimizer for this deinit. Without it,
// Swift 6.3's `EarlyPerfInliner` crashes when checking layout-constraint
// compatibility through the generic parameters of this class on `-O`
// archive builds.
@_optimize(none)
isolated deinit {
let c = continuation
continuation = nil
Expand Down