@@ -340,7 +340,7 @@ class C {
340
340
341
341
// CHECK-LABEL: @readIdentifiedClass
342
342
// CHECK: [read] Class %0 = argument of bb0 : $C
343
- // CHECK: Field: @_hasStorage var property: Int
343
+ // CHECK: Field: var property: Int
344
344
sil @readIdentifiedClass : $@convention(thin) (@guaranteed C) -> Int {
345
345
bb0(%0 : $C):
346
346
%1 = ref_element_addr %0 : $C, #C.property
@@ -352,7 +352,7 @@ bb0(%0 : $C):
352
352
353
353
// CHECK-LABEL: @writeIdentifiedClass
354
354
// CHECK: [modify] Class %0 = argument of bb0 : $C
355
- // CHECK: Field: @_hasStorage var property: Int
355
+ // CHECK: Field: var property: Int
356
356
sil @writeIdentifiedClass : $@convention(thin) (@guaranteed C, Int) -> () {
357
357
bb0(%0 : $C, %1 : $Int):
358
358
%2 = ref_element_addr %0 : $C, #C.property
@@ -365,7 +365,7 @@ bb0(%0 : $C, %1 : $Int):
365
365
366
366
// CHECK-LABEL: @readWriteIdentifiedClass
367
367
// CHECK: [modify] Class %1 = alloc_ref $C
368
- // CHECK: Field: @_hasStorage var property: Int
368
+ // CHECK: Field: var property: Int
369
369
sil @readWriteIdentifiedClass : $@convention(thin) (Int) -> (Int) {
370
370
bb0(%0 : $Int):
371
371
%1 = alloc_ref $C
@@ -380,7 +380,7 @@ bb0(%0 : $Int):
380
380
381
381
// CHECK-LABEL: @readIdentifiedNestedClass
382
382
// CHECK: [read] Class %0 = argument of bb0 : $C
383
- // CHECK: Field: @_hasStorage var property: Int
383
+ // CHECK: Field: var property: Int
384
384
sil @readIdentifiedNestedClass : $@convention(thin) (@guaranteed C) -> Int {
385
385
bb0(%0 : $C):
386
386
%1 = ref_element_addr %0 : $C, #C.property
@@ -394,7 +394,7 @@ bb0(%0 : $C):
394
394
395
395
// CHECK-LABEL: @writeIdentifiedNestedClass
396
396
// CHECK: [modify] Class %0 = argument of bb0 : $C
397
- // CHECK: Field: @_hasStorage var property: Int
397
+ // CHECK: Field: var property: Int
398
398
sil @writeIdentifiedNestedClass : $@convention(thin) (@guaranteed C, Int) -> () {
399
399
bb0(%0 : $C, %1 : $Int):
400
400
%2 = ref_element_addr %0 : $C, #C.property
@@ -409,7 +409,7 @@ bb0(%0 : $C, %1 : $Int):
409
409
410
410
// CHECK-LABEL: @readWriteIdentifiedNestedClass
411
411
// CHECK: [modify] Class %1 = alloc_ref $C
412
- // CHECK: Field: @_hasStorage var property: Int
412
+ // CHECK: Field: var property: Int
413
413
sil @readWriteIdentifiedNestedClass : $@convention(thin) (Int) -> (Int) {
414
414
bb0(%0 : $Int):
415
415
%1 = alloc_ref $C
@@ -541,7 +541,7 @@ bb0(%0 : $*Int, %1 : $*Int):
541
541
// Test directly recursive argument access.
542
542
// CHECK-LABEL: @readRecursiveArgument
543
543
// CHECK: [read] Class %0 = argument of bb0 : $C
544
- // CHECK: Field: @_hasStorage var property: Int
544
+ // CHECK: Field: var property: Int
545
545
sil @readRecursiveArgument : $@convention(thin) (@guaranteed C, Int) -> Int {
546
546
bb0(%0 : $C, %1 : $Int):
547
547
%propaddr = ref_element_addr %0 : $C, #C.property
@@ -556,7 +556,7 @@ bb0(%0 : $C, %1 : $Int):
556
556
// Test a class argument access from an optional caller value.
557
557
// CHECK-LABEL: @readOptionalArgumentInCallee
558
558
// CHECK: [read] Class %1 = unchecked_enum_data %0 : $Optional<C>, #Optional.some!enumelt.1
559
- // CHECK: Field: @_hasStorage var property: Int
559
+ // CHECK: Field: var property: Int
560
560
sil @readOptionalArgumentInCallee : $@convention(thin) (@guaranteed Optional<C>) -> Int {
561
561
bb0(%0 : $Optional<C>):
562
562
%c = unchecked_enum_data %0 : $Optional<C>, #Optional.some!enumelt.1
@@ -567,7 +567,7 @@ bb0(%0 : $Optional<C>):
567
567
568
568
// CHECK-LABEL: @readOptionalArgumentInCalleeHelper
569
569
// CHECK: [read] Class %0 = argument of bb0 : $C
570
- // CHECK: Field: @_hasStorage var property: Int
570
+ // CHECK: Field: var property: Int
571
571
sil private @readOptionalArgumentInCalleeHelper : $@convention(thin) (@guaranteed C) -> Int {
572
572
bb0(%0 : $C):
573
573
%propaddr = ref_element_addr %0 : $C, #C.property
0 commit comments