Skip to content

Commit 11f65f2

Browse files
committed
[lldb] Support class_ro_t pointer authentication
Upstream support for signed class_ro_t pointers. (cherry picked from commit a765f2a)
1 parent f5d024b commit 11f65f2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ bool ClassDescriptorV2::objc_class_t::Read(Process *process,
7878
if (ABISP abi_sp = process->GetABI()) {
7979
m_isa = abi_sp->FixCodeAddress(m_isa);
8080
m_superclass = abi_sp->FixCodeAddress(m_superclass);
81+
m_data_ptr = abi_sp->FixCodeAddress(m_data_ptr);
8182
}
8283
return true;
8384
}

0 commit comments

Comments
 (0)