mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
// RUN: %target-swift-frontend -assume-parsing-unqualified-ownership-sil %s -module-name main -emit-ir -o - | %FileCheck -check-prefix=%target-ptrsize %s
|
|
|
|
import Builtin
|
|
import Swift
|
|
|
|
// 64: %T4main14Rdar15410780_AV = type <{ i2048, %Ts4Int8V }>
|
|
// 64: %T4main14Rdar15410780_BV = type <{ %T4main14Rdar15410780_AVSg }>
|
|
// 64: %T4main14Rdar15410780_AVSg = type <{ [257 x i8], [1 x i8] }>
|
|
// 64: %T4main14Rdar15410780_CV = type <{ %TSSSg }>
|
|
// 64: %TSSSg = type <{ [24 x i8], [1 x i8] }>
|
|
|
|
// 64: @_T04main14Rdar15410780_AVWV = internal constant {{.*}} (i64 257
|
|
// 64: @_T04main14Rdar15410780_BVWV = internal constant {{.*}} (i64 258
|
|
// 64: @_T04main14Rdar15410780_CVWV = internal constant {{.*}} (i64 25
|
|
|
|
|
|
// 32: %T4main14Rdar15410780_AV = type <{ i2048, %Ts4Int8V }>
|
|
// 32: %T4main14Rdar15410780_BV = type <{ %T4main14Rdar15410780_AVSg }>
|
|
// 32: %T4main14Rdar15410780_AVSg = type <{ [257 x i8], [1 x i8] }>
|
|
// 32: %T4main14Rdar15410780_CV = type <{ %TSSSg }>
|
|
// 32: %TSSSg = type <{ [12 x i8], [1 x i8] }>
|
|
|
|
// 32: @_T04main14Rdar15410780_AVWV = internal constant {{.*}} (i32 257
|
|
// 32: @_T04main14Rdar15410780_BVWV = internal constant {{.*}} (i32 258
|
|
// 32: @_T04main14Rdar15410780_CVWV = internal constant {{.*}} (i32 13
|
|
|
|
|
|
// <rdar://problem/15410780>
|
|
struct Rdar15410780_A {
|
|
var a: Builtin.Int2048
|
|
var b: Int8
|
|
}
|
|
|
|
struct Rdar15410780_B {
|
|
var c: Rdar15410780_A?
|
|
}
|
|
|
|
struct Rdar15410780_C {
|
|
var d: String?
|
|
}
|