diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-09-12 23:38:44 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-09-12 23:38:44 +0000 |
commit | 887062aeb3f78734ddeac73b227e8d1dd40b1bf3 (patch) | |
tree | 56b8bc67a4f1608327fea9c75753af921b52fb0d /lldb/source/Interpreter/CommandObject.cpp | |
parent | 3337e396c8863af74d84bac60115d25692dcb581 (diff) | |
download | bcm5719-llvm-887062aeb3f78734ddeac73b227e8d1dd40b1bf3.tar.gz bcm5719-llvm-887062aeb3f78734ddeac73b227e8d1dd40b1bf3.zip |
Watchpoint WIP:
o Rename from OptionGroupWatchpoint::WatchMode to OptionGroupWatchpoint::WatchType,
and CommandArgumentType::eArgTypeWatchMode to CommandArgumentType::eArgTypeWatchType.
Update the sources to reflect the change.
o Add a CreateWatchpointLocation() method to Target class, which is currently not implmeneted
(returns an empty WatchpointLocationSP object). Add logic to CommandObjectFrame::Execute()
to exercise the added API for creating a watchpoint location.
llvm-svn: 139560
Diffstat (limited to 'lldb/source/Interpreter/CommandObject.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandObject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandObject.cpp b/lldb/source/Interpreter/CommandObject.cpp index c3547e23995..afd00c520b7 100644 --- a/lldb/source/Interpreter/CommandObject.cpp +++ b/lldb/source/Interpreter/CommandObject.cpp @@ -830,7 +830,7 @@ CommandObject::g_arguments_data[] = { eArgTypeWidth, "width", CommandCompletions::eNoCompletion, { NULL, false }, "Help text goes here." }, { eArgTypeNone, "none", CommandCompletions::eNoCompletion, { NULL, false }, "No help available for this." }, { eArgTypePlatform, "platform-name", CommandCompletions::ePlatformPluginCompletion, { NULL, false }, "The name of an installed platform plug-in . Type 'platform list' to see a complete list of installed platforms." }, - { eArgTypeWatchMode, "watch-mode", CommandCompletions::eNoCompletion, { NULL, false }, "Specify the mode for a watchpoint." } + { eArgTypeWatchType, "watch-type", CommandCompletions::eNoCompletion, { NULL, false }, "Specify the type for a watchpoint." } }; const CommandObject::ArgumentTableEntry* |