diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-10-18 18:31:06 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-10-18 18:31:06 +0000 |
commit | 7d97b1c2744f523eb0f6ad0cd0381ac57ec02706 (patch) | |
tree | b723a9e187e363e6a6829715283c64037974c219 /lldb/source/Interpreter | |
parent | 617075fcf6f4b3c02be35e04e241e7a5835759f8 (diff) | |
download | bcm5719-llvm-7d97b1c2744f523eb0f6ad0cd0381ac57ec02706.tar.gz bcm5719-llvm-7d97b1c2744f523eb0f6ad0cd0381ac57ec02706.zip |
Modify the help text for watching a variable or its pointee.
llvm-svn: 142391
Diffstat (limited to 'lldb/source/Interpreter')
-rw-r--r-- | lldb/source/Interpreter/OptionGroupWatchpoint.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Interpreter/OptionGroupWatchpoint.cpp b/lldb/source/Interpreter/OptionGroupWatchpoint.cpp index c1f2182c1b5..ca257259d13 100644 --- a/lldb/source/Interpreter/OptionGroupWatchpoint.cpp +++ b/lldb/source/Interpreter/OptionGroupWatchpoint.cpp @@ -41,8 +41,8 @@ static OptionEnumValueElement g_watch_size[] = 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."} }; |