Skip to content

Commit 53a6cd5

Browse files
test: Fix raw_layout.swift for 32-bit platforms
The test was failing on 32-bit platforms after #75518
1 parent d53b1c4 commit 53a6cd5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/IRGen/raw_layout.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,8 +322,9 @@ struct ConcreteVectorMovesAsLike: ~Copyable {
322322
// CHECK-SAME: , {{i64|i32}} 16
323323
// stride
324324
// CHECK-SAME: , {{i64|i32}} 16
325-
// flags: alignment 3, not copyable
326-
// CHECK-SAME: , <i32 0x800003>
325+
// flags: alignment 3, not copyable, (on 32-bit platforms) not storable inline
326+
// CHECK-64-SAME: , <i32 0x800003>
327+
// CHECK-32-SAME: , <i32 0x820003>
327328
struct ConcreteVectorIntMovesAsLike: ~Copyable {
328329
let vector: VectorMovesAsLike<Int32, 4>
329330
}

0 commit comments

Comments
 (0)