[Lldb-commits] [lldb] [lldb] Add frame recognizers for libc++ `std::invoke` (PR #105695)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 23 02:15:28 PDT 2024
================
@@ -81,8 +105,9 @@ CPPLanguageRuntime::CPPLanguageRuntime(Process *process)
if (process)
process->GetTarget().GetFrameRecognizerManager().AddRecognizer(
StackFrameRecognizerSP(new LibCXXFrameRecognizer()), {},
- std::make_shared<RegularExpression>("^std::__1::"),
- /*first_instruction_only*/ false);
+ std::make_shared<RegularExpression>("std::__[0-9]*::"),
----------------
Michael137 wrote:
```suggestion
std::make_shared<RegularExpression>("^std::__[0-9]*::"),
```
https://github.com/llvm/llvm-project/pull/105695
More information about the lldb-commits
mailing list