We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
+
1 parent e413cc9 commit a84c26aCopy full SHA for a84c26a
lldb/source/Commands/CommandObjectThread.cpp
@@ -1649,11 +1649,15 @@ class CommandObjectThreadJump : public CommandObjectParsed {
1649
return Status::FromErrorStringWithFormat("invalid line number: '%s'.",
1650
option_arg.str().c_str());
1651
break;
1652
- case 'b':
+ case 'b': {
1653
+ if (option_arg.starts_with('+'))
1654
+ option_arg.consume_front("+");
1655
1656
if (option_arg.getAsInteger(0, m_line_offset))
1657
return Status::FromErrorStringWithFormat("invalid line offset: '%s'.",
1658
1659
1660
+ }
1661
case 'a':
1662
m_load_addr = OptionArgParser::ToAddress(execution_context, option_arg,
1663
LLDB_INVALID_ADDRESS, &error);
0 commit comments