[Lldb-commits] [lldb] r140450 - /lldb/trunk/test/python_api/watchpoint/main.c

Johnny Chen johnny.chen at apple.com
Fri Sep 23 22:01:54 PDT 2011


Author: johnny
Date: Sat Sep 24 00:01:53 2011
New Revision: 140450

URL: http://llvm.org/viewvc/llvm-project?rev=140450&view=rev
Log:
Fix comment.

Modified:
    lldb/trunk/test/python_api/watchpoint/main.c

Modified: lldb/trunk/test/python_api/watchpoint/main.c
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/watchpoint/main.c?rev=140450&r1=140449&r2=140450&view=diff
==============================================================================
--- lldb/trunk/test/python_api/watchpoint/main.c (original)
+++ lldb/trunk/test/python_api/watchpoint/main.c Sat Sep 24 00:01:53 2011
@@ -15,7 +15,7 @@
     int local = 0;
     printf("&global=%p\n", &global);
     printf("about to write to 'global'...\n"); // Set break point at this line.
-                                               // When stopped, watch 'global' for write.
+                                               // When stopped, watch 'global' for read&write.
     global = 20;
     local += argc;
     ++local;





More information about the lldb-commits mailing list