Skip to content

Commit 0e2a8bd

Browse files
authored
Fix a test that was failing on 32-bit platforms (#75808)
rdar://133549324
1 parent c3e067b commit 0e2a8bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Interop/Cxx/foreign-reference/reference-counted-objc-property.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import ReferenceCountedObjCProperty
1010
// CHECK: %[[V4:.*]] = load ptr, ptr @"\01L_selector(lc)", align {{4|8}}
1111
// CHECK: %[[V5:.*]] = call ptr @objc_msgSend(ptr %{{.*}}, ptr %[[V4]])
1212
// CHECK: call void @_Z8LCRetainPN2NS10LocalCountE(ptr %[[V5]])
13-
// CHECK: store ptr %[[V5]], ptr %[[LC]], align 8
14-
// CHECK: %[[TODESTROY:.*]] = load ptr, ptr %[[LC]], align 8
13+
// CHECK: store ptr %[[V5]], ptr %[[LC]], align {{4|8}}
14+
// CHECK: %[[TODESTROY:.*]] = load ptr, ptr %[[LC]], align {{4|8}}
1515
// CHECK: call void @_Z9LCReleasePN2NS10LocalCountE(ptr %[[TODESTROY]]
1616

1717
public func testGetter() {

0 commit comments

Comments
 (0)