[Lldb-commits] [lldb] r116340 - /lldb/trunk/test/foundation/main.m

Johnny Chen johnny.chen at apple.com
Tue Oct 12 14:24:25 PDT 2010


Author: johnny
Date: Tue Oct 12 16:24:25 2010
New Revision: 116340

URL: http://llvm.org/viewvc/llvm-project?rev=116340&view=rev
Log:
Forgor to also check in this change with r116337.

Modified:
    lldb/trunk/test/foundation/main.m

Modified: lldb/trunk/test/foundation/main.m
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/foundation/main.m?rev=116340&r1=116339&r2=116340&view=diff
==============================================================================
--- lldb/trunk/test/foundation/main.m (original)
+++ lldb/trunk/test/foundation/main.m Tue Oct 12 16:24:25 2010
@@ -38,7 +38,7 @@
     MyString *my = [[MyString alloc] initWithNSString:str];
     NSLog(@"MyString instance: %@", [my description]);
 
-    id str_id = str;
+    id str_id = str; // Set break point at this line.
     SEL sel = @selector(length);
     BOOL responds = [str respondsToSelector:sel];
     printf("sizeof(id) = %zu\n", sizeof(id));





More information about the lldb-commits mailing list