[Lldb-commits] [lldb] r149917 - /lldb/trunk/source/Commands/CommandObjectFrame.cpp

Johnny Chen johnny.chen at apple.com
Mon Feb 6 14:17:23 PST 2012


Author: johnny
Date: Mon Feb  6 16:17:23 2012
New Revision: 149917

URL: http://llvm.org/viewvc/llvm-project?rev=149917&view=rev
Log:
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

Modified:
    lldb/trunk/source/Commands/CommandObjectFrame.cpp

Modified: lldb/trunk/source/Commands/CommandObjectFrame.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectFrame.cpp?rev=149917&r1=149916&r2=149917&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectFrame.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectFrame.cpp Mon Feb  6 16:17:23 2012
@@ -332,7 +332,9 @@
                        "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),





More information about the lldb-commits mailing list