@@ -61,7 +61,7 @@ func nonPointerBits(_ x: Builtin.BridgeObject) -> UInt {
61
61
62
62
// Try without any bits set.
63
63
if true {
64
- print ( " No bits set " ) // CHECK-NEXT : No bits set
64
+ print ( " No bits set " ) // CHECK: No bits set
65
65
let x = C ( )
66
66
let bo = Builtin . castToBridgeObject ( x, 0 . _builtinWordValue)
67
67
let bo2 = bo
@@ -89,7 +89,7 @@ if true {
89
89
90
90
// Try with all spare bits set.
91
91
if true {
92
- print ( " All spare bits set " ) // CHECK-NEXT : All spare bits set
92
+ print ( " All spare bits set " ) // CHECK: All spare bits set
93
93
let x = C ( )
94
94
let bo = Builtin . castToBridgeObject ( x, NATIVE_SPARE_BITS . _builtinWordValue)
95
95
@@ -128,7 +128,7 @@ func nonNativeBridgeObject(_ o: AnyObject) -> Builtin.BridgeObject {
128
128
// Try with a (probably) tagged pointer. No bits may be masked into a
129
129
// non-native object.
130
130
if true {
131
- print ( " Tagged pointer " ) // CHECK-NEXT : Tagged pointer
131
+ print ( " Tagged pointer " ) // CHECK: Tagged pointer
132
132
let x = NSNumber ( value: 22 )
133
133
let bo = nonNativeBridgeObject ( x)
134
134
let bo2 = bo
@@ -151,7 +151,7 @@ var unTaggedString: NSString {
151
151
152
152
// Try with an un-tagged pointer.
153
153
if true {
154
- print ( " Untagged pointer " ) // CHECK-NEXT : Untagged pointer
154
+ print ( " Untagged pointer " ) // CHECK: Untagged pointer
155
155
let x = unTaggedString
156
156
let bo = nonNativeBridgeObject ( x)
157
157
let bo2 = bo
@@ -188,7 +188,7 @@ func hitOptionalSpecifically(_ x: Builtin.BridgeObject?) {
188
188
}
189
189
190
190
if true {
191
- print ( " BridgeObject " ) // CHECK-NEXT : BridgeObject
191
+ print ( " BridgeObject " ) // CHECK: BridgeObject
192
192
193
193
// CHECK-NEXT: true
194
194
print ( MemoryLayout< Optional< Builtin . BridgeObject>>. size
0 commit comments