mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
While the comment is correct to state that this won't enable any new optimizations with -Onone, it does enable IRGen's lazy function emission, which is important for 'reasync' functions, which we don't want to emit at all even at -Onone. This fixes debug stdlib builds with the new reasync versions of the &&, || and ?? operators.
13 lines
947 B
Swift
13 lines
947 B
Swift
// RUN: %target-swift-frontend -enable-library-evolution -disable-availability-checking -O -emit-sil %s %S/Inputs/cast_folding_opaque_other.swift -module-name cast_folding_opaque
|
|
// RUN: %target-swift-frontend -enable-library-evolution -disable-availability-checking -Onone -emit-sil -primary-file %s %S/Inputs/cast_folding_opaque_other.swift -module-name cast_folding_opaque | %FileCheck %s
|
|
|
|
// CHECK-LABEL: sil @$s19cast_folding_opaque23testCastOpaqueArchetypeAA10UnderlyingVyF
|
|
// CHECK: [[O:%.*]] = alloc_stack $@_opaqueReturnTypeOf("$s19cast_folding_opaque12returnOpaqueQryF", 0)
|
|
// CHECK: [[F:%.*]] = function_ref @$s19cast_folding_opaque12returnOpaqueQryF
|
|
// CHECK: apply [[F]]([[O]])
|
|
// CHECK: unconditional_checked_cast_addr @_opaqueReturnTypeOf{{.*}}in [[O]] : $*@_opaqueReturnTypeOf{{.*}}to Underlying in %0 : $*Underlying
|
|
@inlinable
|
|
public func testCastOpaqueArchetype() -> Underlying {
|
|
return returnOpaque() as! Underlying
|
|
}
|