Skip to content

Commit 3609dad

Browse files
committed
Fix test builtin_bridge_object.swift
The bottom 4 bits of the top byte are now reserved on arm64
1 parent 6f44289 commit 3609dad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Interpreter/builtin_bridge_object.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ let OBJC_TAGGED_POINTER_BITS: UInt = 0x8000_0000_0000_0001
2929
#elseif arch(arm64)
3030

3131
// We have ObjC tagged pointers in the highest bit
32-
let NATIVE_SPARE_BITS: UInt = 0x7F00_0000_0000_0007
32+
let NATIVE_SPARE_BITS: UInt = 0x7000_0000_0000_0007
3333
let OBJC_TAGGED_POINTER_BITS: UInt = 0x8000_0000_0000_0000
3434

3535
#elseif arch(powerpc64) || arch(powerpc64le)

0 commit comments

Comments
 (0)