[Lldb-commits] [lldb] [lldb] Change Module to have a concrete UnwindTable, update (PR #101130)
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 30 13:53:16 PDT 2024
================
@@ -64,7 +64,7 @@ class UnwindTable {
private:
void Dump(Stream &s);
- void Initialize();
+ void Initialize(bool force = false);
----------------
jasonmolenda wrote:
Yeah I'm not thrilled with the terminology I used. But I had `Initialize` which assumed no unwind sources had been discovered, and `Update` called after a SymbolFileVendor is added to the Module which looks for any un-set unwind sources and checks to see if they can now be found. That duplication didn't thrill me.
https://github.com/llvm/llvm-project/pull/101130
More information about the lldb-commits
mailing list