================ @@ -95,7 +97,8 @@ bool SymbolContext::DumpStopContext(Stream *s, ExecutionContextScope *exe_scope, if (!name) name = function->GetName(); if (name) - name.Dump(s); + pattern ? Address::DumpName(s, name.GetStringRef(), pattern) + : name.Dump(s); ---------------- junior-jl wrote:
True. I did not do this in first place, because I didn't realize that `Dump(s)` would basically be `s.PutCString(name)`. Changed this. https://github.com/llvm/llvm-project/pull/69422 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits