[Lldb-commits] [lldb] [Support] [lldb] Fix thread jump #45326 (PR #135778)

Ebuka Ezike via lldb-commits lldb-commits at lists.llvm.org
Tue May 20 15:37:52 PDT 2025


================
@@ -1649,11 +1649,14 @@ class CommandObjectThreadJump : public CommandObjectParsed {
           return Status::FromErrorStringWithFormat("invalid line number: '%s'.",
                                                    option_arg.str().c_str());
         break;
-      case 'b':
+      case 'b': {
+        option_arg.consume_front("+");
----------------
da-viper wrote:

It is for `_regexp-jump`, as for the full thread jump command users are most like to just write the number without the plus.   

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


More information about the lldb-commits mailing list