[Lldb-commits] [lldb] [lldb] Improve ELF trampoline function detection (PR #178695)
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Tue Feb 10 09:22:07 PST 2026
================
@@ -265,6 +265,10 @@ class Module : public std::enable_shared_from_this<Module>,
lldb::SymbolType symbol_type,
SymbolContextList &sc_list);
+ void FindSymbolsContainingFileAddress(const Address &addr,
+ lldb::SymbolType symbol_type,
+ SymbolContextList &sc_list);
----------------
adrian-prantl wrote:
I know other functions in Module use this style, but unless there is a compelling reason for why we want to _append_ to an existing list, I would prefer this function to return a `SymbolContextList` value.
https://github.com/llvm/llvm-project/pull/178695
More information about the lldb-commits
mailing list