summaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/cpp/thunk
AgeCommit message (Collapse)Author
2025-02-17[lldb] Disable test_step_out_thunk on WindowsJonas Devlieghere
On Windows we end up in assembly. Not sure if the thread plans behave differently or this is a debug info issue. I have no environment to reproduce and investigate this in, so I'm disabling the test for now.
2025-02-17[lldb] Support stepping through C++ thunks (#127419)Jonas Devlieghere
This PR fixes LLDB stepping out, rather than stepping through a C++ thunk. The implementation is based on, and upstreams, the support for runtime thunks in the Swift fork. Fixes #43413