summaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/cpp/step-through-trampoline/main.cpp
AgeCommit message (Collapse)Author
2022-06-29[lldb] fix stepping through POSIX trampolinesMichael Daniels
The DynamicLoaderPOSIXDYLD::GetStepThroughTrampolinePlan() function was doing the symbol lookup using the demangled name. This stopped working with https://reviews.llvm.org/D118814. To get things working again, just use the mangled name for the lookup instead. Reviewed By: labath Differential Revision: https://reviews.llvm.org/D127999