[Lldb-commits] [lldb] [lldb] Clear cached unwind plans when adding symbols (PR #125839)

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Wed Feb 5 13:48:53 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);
----------------
jasonmolenda wrote:

`-c option`?

https://github.com/llvm/llvm-project/pull/125839


More information about the lldb-commits mailing list