[Lldb-commits] [lldb] [Support] [lldb] Fix thread jump #45326 (PR #135778)
Ebuka Ezike via lldb-commits
lldb-commits at lists.llvm.org
Sun May 25 05:01:43 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:
added documentation clarifying it can be negative or positive.
https://github.com/llvm/llvm-project/pull/135778
More information about the lldb-commits
mailing list