diff options
author | Johnny Chen <johnny.chen@apple.com> | 2012-06-19 22:12:58 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2012-06-19 22:12:58 +0000 |
commit | 1773a89ff43cc0b76867a2a630dccb45e1d75917 (patch) | |
tree | cab34c3ebe083e42b2a9db8032e1ef778aff1d2f /lldb/source/Commands/CommandObjectWatchpoint.cpp | |
parent | 478faed4b08a6614fe9b8e3e00f71dadf17f1741 (diff) | |
download | llvm-1773a89ff43cc0b76867a2a630dccb45e1d75917.zip llvm-1773a89ff43cc0b76867a2a630dccb45e1d75917.tar.gz llvm-1773a89ff43cc0b76867a2a630dccb45e1d75917.tar.bz2 |
Chnage VerifyWatchpointIDs() from a static function to a class function to be called from other source files.
llvm-svn: 158751
Diffstat (limited to 'lldb/source/Commands/CommandObjectWatchpoint.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectWatchpoint.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lldb/source/Commands/CommandObjectWatchpoint.cpp b/lldb/source/Commands/CommandObjectWatchpoint.cpp index 8b6ff80..c41d6d9 100644 --- a/lldb/source/Commands/CommandObjectWatchpoint.cpp +++ b/lldb/source/Commands/CommandObjectWatchpoint.cpp @@ -101,8 +101,8 @@ WithRSAIndex(llvm::StringRef &Arg) // Return true if wp_ids is successfully populated with the watch ids. // False otherwise. -static bool -VerifyWatchpointIDs(Args &args, std::vector<uint32_t> &wp_ids) +bool +CommandObjectMultiwordWatchpoint::VerifyWatchpointIDs(Args &args, std::vector<uint32_t> &wp_ids) { // Pre-condition: args.GetArgumentCount() > 0. assert(args.GetArgumentCount() > 0); @@ -306,7 +306,7 @@ protected: { // Particular watchpoints selected; enable them. std::vector<uint32_t> wp_ids; - if (!VerifyWatchpointIDs(command, wp_ids)) + if (!CommandObjectMultiwordWatchpoint::VerifyWatchpointIDs(command, wp_ids)) { result.AppendError("Invalid watchpoints specification."); result.SetStatus(eReturnStatusFailed); @@ -406,7 +406,7 @@ protected: { // Particular watchpoints selected; enable them. std::vector<uint32_t> wp_ids; - if (!VerifyWatchpointIDs(command, wp_ids)) + if (!CommandObjectMultiwordWatchpoint::VerifyWatchpointIDs(command, wp_ids)) { result.AppendError("Invalid watchpoints specification."); result.SetStatus(eReturnStatusFailed); @@ -491,7 +491,7 @@ protected: { // Particular watchpoints selected; disable them. std::vector<uint32_t> wp_ids; - if (!VerifyWatchpointIDs(command, wp_ids)) + if (!CommandObjectMultiwordWatchpoint::VerifyWatchpointIDs(command, wp_ids)) { result.AppendError("Invalid watchpoints specification."); result.SetStatus(eReturnStatusFailed); @@ -574,7 +574,7 @@ protected: { // Particular watchpoints selected; delete them. std::vector<uint32_t> wp_ids; - if (!VerifyWatchpointIDs(command, wp_ids)) + if (!CommandObjectMultiwordWatchpoint::VerifyWatchpointIDs(command, wp_ids)) { result.AppendError("Invalid watchpoints specification."); result.SetStatus(eReturnStatusFailed); @@ -715,7 +715,7 @@ protected: { // Particular watchpoints selected; ignore them. std::vector<uint32_t> wp_ids; - if (!VerifyWatchpointIDs(command, wp_ids)) + if (!CommandObjectMultiwordWatchpoint::VerifyWatchpointIDs(command, wp_ids)) { result.AppendError("Invalid watchpoints specification."); result.SetStatus(eReturnStatusFailed); @@ -872,7 +872,7 @@ protected: { // Particular watchpoints selected; set condition on them. std::vector<uint32_t> wp_ids; - if (!VerifyWatchpointIDs(command, wp_ids)) + if (!CommandObjectMultiwordWatchpoint::VerifyWatchpointIDs(command, wp_ids)) { result.AppendError("Invalid watchpoints specification."); result.SetStatus(eReturnStatusFailed); |