Updated help text for "breakpoint command add" to reflect r113596 changeset.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@113607 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectBreakpointCommand.cpp b/source/Commands/CommandObjectBreakpointCommand.cpp
index 396933a..69cd42b 100644
--- a/source/Commands/CommandObjectBreakpointCommand.cpp
+++ b/source/Commands/CommandObjectBreakpointCommand.cpp
@@ -162,6 +162,22 @@
 > print \"Hit this breakpoint!\" \n\
 > DONE \n\
  \n\
+As a convenience, this also works for a short Python one-liner: \n\
+(lldb) breakpoint command add -p 1 \"import time; print time.asctime()\" \n\
+(lldb) run \n\
+Launching '.../a.out'  (x86_64) \n\
+(lldb) Fri Sep 10 12:17:45 2010 \n\
+Process 21778 Stopped \n\
+* thread #1: tid = 0x2e03, 0x0000000100000de8 a.out`c + 7 at main.c:39, stop reason = breakpoint 1.1, queue = com.apple.main-thread \n\
+  36   	\n\
+  37   	int c(int val)\n\
+  38   	{\n\
+  39 ->	    return val + 3;\n\
+  40   	}\n\
+  41   	\n\
+  42   	int main (int argc, char const *argv[])\n\
+(lldb) \n\
+ \n\
 Example multiple line Python breakpoint command, using function definition: \n\
  \n\
 (lldb) breakpoint command add -p 1 \n\