diff options
author | Johnny Chen <johnny.chen@apple.com> | 2012-02-06 22:17:23 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2012-02-06 22:17:23 +0000 |
commit | fe3bdad393272c3f546e49eba300223c2426217e (patch) | |
tree | 6dbc89814b86e2ee3a1ff3068f7f8b29f7e5ac35 /lldb/source/Commands/CommandObjectFrame.cpp | |
parent | 3def9aeaff080fa44e7fa60b91747ff060e49915 (diff) | |
download | llvm-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.cpp | 4 |
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), |