diff options
author | Jim Ingham <jingham@apple.com> | 2014-12-16 23:40:14 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2014-12-16 23:40:14 +0000 |
commit | 5e09c8c32cb61ef3633afa7ecfc9609b5b97c779 (patch) | |
tree | a8de2948a9404d9f80227fa224cdef24b41ecff8 /lldb/source/Commands/CommandObjectBreakpointCommand.cpp | |
parent | aa1bade7b4566f1409d0b6694a0517901ba3fbf1 (diff) | |
download | llvm-5e09c8c32cb61ef3633afa7ecfc9609b5b97c779.zip llvm-5e09c8c32cb61ef3633afa7ecfc9609b5b97c779.tar.gz llvm-5e09c8c32cb61ef3633afa7ecfc9609b5b97c779.tar.bz2 |
Add the ability to tag one or more breakpoints with a name. These
names can then be used in place of breakpoint id's or breakpoint id
ranges in all the commands that operate on breakpoints.
<rdar://problem/10103959>
llvm-svn: 224392
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpointCommand.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpointCommand.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpointCommand.cpp b/lldb/source/Commands/CommandObjectBreakpointCommand.cpp index ded03c5..8f8404b 100644 --- a/lldb/source/Commands/CommandObjectBreakpointCommand.cpp +++ b/lldb/source/Commands/CommandObjectBreakpointCommand.cpp @@ -467,7 +467,7 @@ protected: } BreakpointIDList valid_bp_ids; - CommandObjectMultiwordBreakpoint::VerifyBreakpointIDs (command, target, result, &valid_bp_ids); + CommandObjectMultiwordBreakpoint::VerifyBreakpointOrLocationIDs (command, target, result, &valid_bp_ids); m_bp_options_vec.clear(); @@ -714,7 +714,7 @@ protected: } BreakpointIDList valid_bp_ids; - CommandObjectMultiwordBreakpoint::VerifyBreakpointIDs (command, target, result, &valid_bp_ids); + CommandObjectMultiwordBreakpoint::VerifyBreakpointOrLocationIDs (command, target, result, &valid_bp_ids); if (result.Succeeded()) { @@ -824,7 +824,7 @@ protected: } BreakpointIDList valid_bp_ids; - CommandObjectMultiwordBreakpoint::VerifyBreakpointIDs (command, target, result, &valid_bp_ids); + CommandObjectMultiwordBreakpoint::VerifyBreakpointOrLocationIDs (command, target, result, &valid_bp_ids); if (result.Succeeded()) { |