[Lldb-commits] [lldb] r150036 - /lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp
Johnny Chen
johnny.chen at apple.com
Tue Feb 7 17:35:38 PST 2012
Author: johnny
Date: Tue Feb 7 19:35:38 2012
New Revision: 150036
URL: http://llvm.org/viewvc/llvm-project?rev=150036&view=rev
Log:
Update comment.
Modified:
lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp
Modified: lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp?rev=150036&r1=150035&r2=150036&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp Tue Feb 7 19:35:38 2012
@@ -967,7 +967,8 @@
// 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();
More information about the lldb-commits
mailing list