[Lldb-commits] [lldb] r130848 - /lldb/trunk/test/stop-hook/main.cpp
Johnny Chen
johnny.chen at apple.com
Wed May 4 11:01:44 PDT 2011
Author: johnny
Date: Wed May 4 13:01:44 2011
New Revision: 130848
URL: http://llvm.org/viewvc/llvm-project?rev=130848&view=rev
Log:
Forgot to check in this change with r130811.
Modified:
lldb/trunk/test/stop-hook/main.cpp
Modified: lldb/trunk/test/stop-hook/main.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/stop-hook/main.cpp?rev=130848&r1=130847&r2=130848&view=diff
==============================================================================
--- lldb/trunk/test/stop-hook/main.cpp (original)
+++ lldb/trunk/test/stop-hook/main.cpp Wed May 4 13:01:44 2011
@@ -44,8 +44,8 @@
int A1 = a(1);
printf("a(1) returns %d\n", A1);
- int B2 = b(2); // Another breakpoint which is outside of the stop-hook range.
- printf("b(2) returns %d\n", B2);
+ int C2 = c(2); // Another breakpoint which is outside of the stop-hook range.
+ printf("c(2) returns %d\n", C2);
int A3 = a(3);
printf("a(3) returns %d\n", A3);
More information about the lldb-commits
mailing list