Skip to content

Commit a39b07d

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

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
@@ -30,7 +30,7 @@ let OBJC_TAGGED_POINTER_BITS: UInt = 0x8000_0000_0000_0001
3030
#elseif arch(arm64)
3131

3232
// We have ObjC tagged pointers in the highest bit
33-
let NATIVE_SPARE_BITS: UInt = 0x7F00_0000_0000_0007
33+
let NATIVE_SPARE_BITS: UInt = 0x7000_0000_0000_0007
3434
let OBJC_TAGGED_POINTER_BITS: UInt = 0x8000_0000_0000_0000
3535

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

0 commit comments

Comments
 (0)