aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectWatchpoint.cpp
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2012-02-08 01:35:38 +0000
committerJohnny Chen <johnny.chen@apple.com>2012-02-08 01:35:38 +0000
commit97cdf361718ee7dd546459f4f65da7b9e1bd3b57 (patch)
treea68ec7f96dcae71fe7bd8d59f194033a85abd5d9 /lldb/source/Commands/CommandObjectWatchpoint.cpp
parentc07c4655f1301af833e5e7a35628593b2a145aae (diff)
downloadllvm-97cdf361718ee7dd546459f4f65da7b9e1bd3b57.zip
llvm-97cdf361718ee7dd546459f4f65da7b9e1bd3b57.tar.gz
llvm-97cdf361718ee7dd546459f4f65da7b9e1bd3b57.tar.bz2
Update comment.
llvm-svn: 150036
Diffstat (limited to 'lldb/source/Commands/CommandObjectWatchpoint.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectWatchpoint.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectWatchpoint.cpp b/lldb/source/Commands/CommandObjectWatchpoint.cpp
index bb715d8..85e2dbd 100644
--- a/lldb/source/Commands/CommandObjectWatchpoint.cpp
+++ b/lldb/source/Commands/CommandObjectWatchpoint.cpp
@@ -967,7 +967,8 @@ CommandObjectWatchpointSet::CommandObjectWatchpointSet (CommandInterpreter &inte
// Push the data for the only argument into the m_arguments vector.
m_arguments.push_back (arg);
- // Absorb the '-w' and '-x' options.
+ // Absorb the '-w' and '-x' options into the '-e' (LLDB_OPT_SET_1) set as
+ // well as the '-v' (LLDB_OPT_SET_2) set.
m_option_group.Append (&m_option_watchpoint, LLDB_OPT_SET_1, LLDB_OPT_SET_1|LLDB_OPT_SET_2);
m_option_group.Append (&m_command_options);
m_option_group.Finalize();