[Lldb-commits] [lldb] r142391 - /lldb/trunk/source/Interpreter/OptionGroupWatchpoint.cpp

Johnny Chen johnny.chen at apple.com
Tue Oct 18 11:31:06 PDT 2011


Author: johnny
Date: Tue Oct 18 13:31:06 2011
New Revision: 142391

URL: http://llvm.org/viewvc/llvm-project?rev=142391&view=rev
Log:
Modify the help text for watching a variable or its pointee.

Modified:
    lldb/trunk/source/Interpreter/OptionGroupWatchpoint.cpp

Modified: lldb/trunk/source/Interpreter/OptionGroupWatchpoint.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/OptionGroupWatchpoint.cpp?rev=142391&r1=142390&r2=142391&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/OptionGroupWatchpoint.cpp (original)
+++ lldb/trunk/source/Interpreter/OptionGroupWatchpoint.cpp Tue Oct 18 13:31:06 2011
@@ -41,8 +41,8 @@
 static OptionDefinition
 g_option_table[] =
 {
-    { LLDB_OPT_SET_1, false, "watch", 'w', required_argument, g_watch_type, 0, eArgTypeWatchType, "Determine how to watch a variable (read, write, or read/write)."},
-    { LLDB_OPT_SET_1, false, "xsize", 'x', required_argument, g_watch_size, 0, eArgTypeByteSize, "Number of bytes to use to watch a location (1, 2, 4, or 8)."}
+    { LLDB_OPT_SET_1, false, "watch", 'w', required_argument, g_watch_type, 0, eArgTypeWatchType, "Determine how to watch a variable; or, with -x option, its pointee."},
+    { LLDB_OPT_SET_1, false, "xsize", 'x', required_argument, g_watch_size, 0, eArgTypeByteSize, "Number of bytes to use to watch the pointee."}
 };
 
 





More information about the lldb-commits mailing list