diff options
author | Johnny Chen <johnny.chen@apple.com> | 2012-02-08 01:50:38 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2012-02-08 01:50:38 +0000 |
commit | 3434b19d63328364fd43ec5ae284c2c75f77e512 (patch) | |
tree | dcfd5c572aa8db24cacd905a962b77429700c1de /lldb/source/Commands/CommandObjectFrame.cpp | |
parent | 042e3720c3689179c25feef3e6254080e8cfe6ed (diff) | |
download | llvm-3434b19d63328364fd43ec5ae284c2c75f77e512.zip llvm-3434b19d63328364fd43ec5ae284c2c75f77e512.tar.gz llvm-3434b19d63328364fd43ec5ae284c2c75f77e512.tar.bz2 |
Clarify the 'frame variable' help message regarding the watchpoint functionality.
llvm-svn: 150039
Diffstat (limited to 'lldb/source/Commands/CommandObjectFrame.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectFrame.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectFrame.cpp b/lldb/source/Commands/CommandObjectFrame.cpp index cec5090..f1d51a1 100644 --- a/lldb/source/Commands/CommandObjectFrame.cpp +++ b/lldb/source/Commands/CommandObjectFrame.cpp @@ -331,7 +331,10 @@ public: "argument, local, file static and file global variables. " "Children of aggregate variables can be specified such as " "'var->child.x'. " - "You can choose to watch a variable with the '-w' option. " + "You can choose to watch a variable with the '-w' option; " + "with the additional '-x' option to specify the region size, " + "the variable's value will be used as the starting address of " + "the region to watch for, instead. " "Note that hardware resources for watching are often limited. " "See alo 'watchpoint set' where you can use an expression to " "specify the address to watch for.", |