Files
swift-mirror/test/SILOptimizer/inline_keypath.swift
Erik Eckstein 2c1d48b69c SIL: add type-dependent operands to the keypath instruction
It's need to correctly maintain dependencies from an open-existential instruction to a `keypath` instruction which uses the opened type.
Fixes a SILVerifier crash.

rdar://105517521
2023-02-17 17:48:55 +01:00

19 lines
653 B
Swift

// RUN: %target-swift-frontend -O -emit-sil %s | %FileCheck %s
public protocol P {}
// CHECK-LABEL: sil @$s14inline_keypath6testitySbAA1P_pXp_s14PartialKeyPathCyxGtSlRzlF
// CHECK: [[T:%[0-9]+]] = open_existential_metatype %0
// CHECK: = keypath {{.*}}@opened{{.*}} type-defs: [[T]]
// CHECK: } // end sil function '$s14inline_keypath6testitySbAA1P_pXp_s14PartialKeyPathCyxGtSlRzlF'
public func testit<C: Collection>(_ t: any P.Type, _ kp: PartialKeyPath<C>) -> Bool {
return tyFunc(t, kp)
}
@inline(__always)
func tyFunc<C: Collection, H: P>(_ h: H.Type, _ kp: PartialKeyPath<C>) -> Bool {
return kp == \Array<H>.count
}