Skip to content

Commit fe82cde

Browse files
committed
Use CHECK for general synchronization
1 parent c63d181 commit fe82cde

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/Interpreter/builtin_bridge_object.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func nonPointerBits(_ x: Builtin.BridgeObject) -> UInt {
6161

6262
// Try without any bits set.
6363
if true {
64-
print("No bits set") // CHECK-NEXT: No bits set
64+
print("No bits set") // CHECK: No bits set
6565
let x = C()
6666
let bo = Builtin.castToBridgeObject(x, 0._builtinWordValue)
6767
let bo2 = bo
@@ -89,7 +89,7 @@ if true {
8989

9090
// Try with all spare bits set.
9191
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
9393
let x = C()
9494
let bo = Builtin.castToBridgeObject(x, NATIVE_SPARE_BITS._builtinWordValue)
9595

@@ -128,7 +128,7 @@ func nonNativeBridgeObject(_ o: AnyObject) -> Builtin.BridgeObject {
128128
// Try with a (probably) tagged pointer. No bits may be masked into a
129129
// non-native object.
130130
if true {
131-
print("Tagged pointer") // CHECK-NEXT: Tagged pointer
131+
print("Tagged pointer") // CHECK: Tagged pointer
132132
let x = NSNumber(value: 22)
133133
let bo = nonNativeBridgeObject(x)
134134
let bo2 = bo
@@ -151,7 +151,7 @@ var unTaggedString: NSString {
151151

152152
// Try with an un-tagged pointer.
153153
if true {
154-
print("Untagged pointer") // CHECK-NEXT: Untagged pointer
154+
print("Untagged pointer") // CHECK: Untagged pointer
155155
let x = unTaggedString
156156
let bo = nonNativeBridgeObject(x)
157157
let bo2 = bo
@@ -188,7 +188,7 @@ func hitOptionalSpecifically(_ x: Builtin.BridgeObject?) {
188188
}
189189

190190
if true {
191-
print("BridgeObject") // CHECK-NEXT: BridgeObject
191+
print("BridgeObject") // CHECK: BridgeObject
192192

193193
// CHECK-NEXT: true
194194
print(MemoryLayout<Optional<Builtin.BridgeObject>>.size

0 commit comments

Comments
 (0)