@@ -50,8 +50,8 @@ struct T {
5050 let w: (Int, C)
5151}
5252
53- // CHECK-LABEL: sil shared [ossa] @stored_properties
54- sil shared [ossa] @stored_properties : $@convention(thin) () -> () {
53+ // CHECK-LABEL: sil shared @stored_properties
54+ sil shared @stored_properties : $@convention(thin) () -> () {
5555entry:
5656 // CHECK: keypath $WritableKeyPath<S, Int>, (root $S; stored_property #S.x : $Int)
5757 %a = keypath $WritableKeyPath<S, Int>, (root $S; stored_property #S.x : $Int)
6565 return undef : $()
6666}
6767
68- // CHECK-LABEL: sil shared [ossa] @stored_properties_generic
69- sil shared [ossa] @stored_properties_generic : $@convention(thin) <D: P, E: Q, F: R> () -> () {
68+ // CHECK-LABEL: sil shared @stored_properties_generic
69+ sil shared @stored_properties_generic : $@convention(thin) <D: P, E: Q, F: R> () -> () {
7070entry:
7171 // CHECK: keypath $WritableKeyPath<Gen<D, E, F>, D>, <τ_0_0, τ_0_1, τ_0_2 where {{.*}}> (root $Gen<τ_0_0, τ_0_1, τ_0_2>; stored_property #Gen.x : $τ_0_0) <D, E, F>
7272 %a = keypath $WritableKeyPath<Gen<D,E,F>, D>, <G: P, H: Q, I: R> (root $Gen<G, H, I>; stored_property #Gen.x : $G) <D, E, F>
7676 return undef : $()
7777}
7878
79- // CHECK-LABEL: sil shared [ossa] @tuple_elements
80- sil shared [ossa] @tuple_elements : $@convention(thin) () -> () {
79+ // CHECK-LABEL: sil shared @tuple_elements
80+ sil shared @tuple_elements : $@convention(thin) () -> () {
8181entry:
8282 // CHECK: keypath $WritableKeyPath<T, Int>, (root $T; stored_property #T.x : $(Int, Int); tuple_element #0 : $Int)
8383 %a = keypath $WritableKeyPath<T, Int>, (root $T; stored_property #T.x : $(Int, Int); tuple_element #0 : $Int)
@@ -108,8 +108,8 @@ sil @gen_subs_eq : $@convention(thin) <A: Hashable, B: Hashable, C: Hashable> (U
108108sil @gen_subs_hash : $@convention(thin) <A: Hashable, B: Hashable, C: Hashable> (UnsafeRawPointer) -> Int
109109
110110
111- // CHECK-LABEL: sil shared [ossa] @computed_properties
112- sil shared [ossa] @computed_properties : $@convention(thin) () -> () {
111+ // CHECK-LABEL: sil shared @computed_properties
112+ sil shared @computed_properties : $@convention(thin) () -> () {
113113entry:
114114 // CHECK: keypath $KeyPath<S, Int>, (root $S; gettable_property $Int, id @id_a : $@convention(thin) () -> (), getter @get_s_int : $@convention(thin) (@in_guaranteed S) -> @out Int)
115115 %a = keypath $KeyPath<S, Int>, (root $S; gettable_property $Int, id @id_a : $@convention(thin) () -> (), getter @get_s_int : $@convention(thin) (@in_guaranteed S) -> @out Int)
@@ -157,10 +157,10 @@ entry:
157157 return undef : $()
158158}
159159
160- // CHECK-LABEL: sil [ossa] @indexes
161- sil [ossa] @indexes : $@convention(thin) (S, C) -> () {
162- // CHECK: bb0([[S:%.*]] : @unowned $S, [[C:%.*]] : @unowned $C):
163- entry(%s : @unowned $S, %c : @unowned $C):
160+ // CHECK-LABEL: sil @indexes
161+ sil @indexes : $@convention(thin) (S, C) -> () {
162+ // CHECK: bb0([[S:%.*]] : $S, [[C:%.*]] : $C):
163+ entry(%s : $S, %c : $C):
164164 // CHECK: keypath $KeyPath<S, Int>, (root $S; settable_property $Int, id @id_a : $@convention(thin) () -> (), getter @get_s_int_subs : $@convention(thin) (@in_guaranteed S, UnsafeRawPointer) -> @out Int, setter @set_s_int_subs : $@convention(thin) (@in_guaranteed Int, @in_guaranteed S, UnsafeRawPointer) -> (), indices [%$0 : $S : $S, %$1 : $C : $C], indices_equals @subs_eq : $@convention(thin) (UnsafeRawPointer, UnsafeRawPointer) -> Bool, indices_hash @subs_hash : $@convention(thin) (UnsafeRawPointer) -> Int) ([[S]], [[C]])
165165 %a = keypath $KeyPath<S, Int>, (root $S; settable_property $Int, id @id_a : $@convention(thin) () -> (), getter @get_s_int_subs : $@convention(thin) (@in_guaranteed S, UnsafeRawPointer) -> @out Int, setter @set_s_int_subs : $@convention(thin) (@in_guaranteed Int, @in_guaranteed S, UnsafeRawPointer) -> (), indices [%$0 : $S : $S, %$1 : $C : $C], indices_equals @subs_eq : $@convention(thin) (UnsafeRawPointer, UnsafeRawPointer) -> Bool, indices_hash @subs_hash : $@convention(thin) (UnsafeRawPointer) -> Int) (%s, %c)
166166 // CHECK: [[T:%.*]] = alloc_stack
0 commit comments