[Lldb-commits] [lldb] [lldb] Clear cached unwind plans when adding symbols (PR #125839)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 7 02:36:45 PST 2025
================
@@ -3471,6 +3471,17 @@ class CommandObjectTargetModulesShowUnwind : public CommandObjectParsed {
m_type = eLookupTypeFunctionOrSymbol;
break;
+ case 'c':
+ bool value, success;
+ value = OptionArgParser::ToBoolean(option_arg, false, &success);
+ if (success) {
+ m_cached = value;
+ } else {
+ return Status::FromErrorStringWithFormatv(
+ "invalid boolean value '%s' passed for -G option", option_arg);
----------------
labath wrote:
haha, you caught me.
https://github.com/llvm/llvm-project/pull/125839
More information about the lldb-commits
mailing list