summaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api/debugger
diff options
context:
space:
mode:
authorMichael Buch <michaelbuch12@gmail.com>2023-03-07 15:52:59 +0000
committerMichael Buch <michaelbuch12@gmail.com>2023-03-07 19:45:49 +0000
commitef7adbe2b7bcdb1fca88f77a7d4da2a8dea63699 (patch)
treee50cacc836bf7e0b1642a2481ef11f20556c65ac /lldb/test/API/python_api/debugger
parentca8faf8f465962e5c39d145a0e2236648cbcc27d (diff)
Reland "[lldb][TypeSystemClang] Format pointers to member functions as eFormatHex"
Before this patch, LLDB used to format pointers to members, such as, ``` void (Foo::*pointer_to_member_func)() = &Foo::member_func; ``` as `eFormatBytes`. E.g., ``` (lldb) v pointer_to_member_func (void (Foo::*)()) $1 = 94 3f 00 00 01 00 00 00 00 00 00 00 00 00 00 00 ``` This patch makes sure we format pointers to member functions the same way we do regular function pointers. After this patch we format member pointers as: ``` (lldb) v pointer_to_member_func (void (Foo::*)()) ::pointer_to_member_func = 0x00000000000000000000000100003f94 ``` Differential Revision: https://reviews.llvm.org/D145241
Diffstat (limited to 'lldb/test/API/python_api/debugger')
0 files changed, 0 insertions, 0 deletions