aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectFrame.cpp
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2012-02-06 22:17:23 +0000
committerJohnny Chen <johnny.chen@apple.com>2012-02-06 22:17:23 +0000
commitfe3bdad393272c3f546e49eba300223c2426217e (patch)
tree6dbc89814b86e2ee3a1ff3068f7f8b29f7e5ac35 /lldb/source/Commands/CommandObjectFrame.cpp
parent3def9aeaff080fa44e7fa60b91747ff060e49915 (diff)
downloadllvm-fe3bdad393272c3f546e49eba300223c2426217e.zip
llvm-fe3bdad393272c3f546e49eba300223c2426217e.tar.gz
llvm-fe3bdad393272c3f546e49eba300223c2426217e.tar.bz2
Add help string for 'frame variable' to link to 'watchpoint set' which allows for using an expression to specify the address to watch for.
rdar://problem/10703290 llvm-svn: 149917
Diffstat (limited to 'lldb/source/Commands/CommandObjectFrame.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectFrame.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectFrame.cpp b/lldb/source/Commands/CommandObjectFrame.cpp
index bb8313c..cec5090 100644
--- a/lldb/source/Commands/CommandObjectFrame.cpp
+++ b/lldb/source/Commands/CommandObjectFrame.cpp
@@ -332,7 +332,9 @@ public:
"Children of aggregate variables can be specified such as "
"'var->child.x'. "
"You can choose to watch a variable with the '-w' option. "
- "Note that hardware resources for watching are often limited.",
+ "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.",
NULL,
eFlagProcessMustBeLaunched | eFlagProcessMustBePaused),
m_option_group (interpreter),