[lldb] [llvm] [lldb] Implement CLI support for reverse-continue (PR #132783)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 31 10:17:40 PDT 2025
================
@@ -468,7 +468,23 @@ class CommandObjectProcessContinue : public CommandObjectParsed {
case 'b':
m_run_to_bkpt_args.AppendArgument(option_arg);
m_any_bkpts_specified = true;
- break;
+ break;
----------------
jimingham wrote:
This isn't how you encode two incompatible options in lldb's command parser. Just put the two options in two Option Sets and lldb will take care of the rest. Look for uses of LLDB_OPT_SET for more details.
https://github.com/llvm/llvm-project/pull/132783
More information about the llvm-commits
mailing list