================
@@ -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
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits