[Lldb-commits] [lldb] [LLDB][NativePDB] Create functions with mangled name (PR #149701)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Wed Sep 24 04:52:34 PDT 2025
================
@@ -140,6 +140,9 @@ class SymbolFileNativePDB : public SymbolFileCommon {
std::optional<PdbCompilandSymId> FindSymbolScope(PdbCompilandSymId id);
+ std::optional<llvm::StringRef> FindMangledFunctionName(PdbCompilandSymId id);
+ std::optional<llvm::StringRef> FindMangledSymbol(SegmentOffset so);
----------------
Michael137 wrote:
Could we just make these an overload of each other? Both functions "find a mangled name". It's just the input that differs. Also, can we make `FindMangledSymbol` private?
https://github.com/llvm/llvm-project/pull/149701
More information about the lldb-commits
mailing list