Skip to content

Commit 45f74a1

Browse files
committed
Fix test/Concurrency/objc_async_protocol_irgen.swift for 32-bit
This test was introduced without 32-bit testing.
1 parent 6c11713 commit 45f74a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Concurrency/objc_async_protocol_irgen.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -enable-experimental-concurrency -import-objc-header %S/Inputs/Delegate.h %s -emit-ir -o - | %FileCheck %s
1+
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -enable-experimental-concurrency -import-objc-header %S/Inputs/Delegate.h %s -emit-ir -o - | %FileCheck %s -DALIGNMENT=%target-alignment
22
// REQUIRES: concurrency
33
// REQUIRES: objc_interop
44

@@ -12,4 +12,4 @@ let anyObject: AnyObject = (MyAsyncProtocol.self as AnyObject) // or something l
1212
// CHECK-LABEL: @_PROTOCOL_INSTANCE_METHODS_MyAsyncProtocol = internal constant
1313
// CHECK-SAME: selector_data(myAsyncMethod:)
1414
// CHECK-NOT: selector_data(myAsyncMethod:)
15-
// CHECK-SAME: align 8
15+
// CHECK-SAME: align [[ALIGNMENT]]

0 commit comments

Comments
 (0)