summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/test/foundation/main.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/foundation/main.m b/lldb/test/foundation/main.m
index 254e283ce73..dff265cf674 100644
--- a/lldb/test/foundation/main.m
+++ b/lldb/test/foundation/main.m
@@ -38,7 +38,7 @@ int main (int argc, char const *argv[])
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));
OpenPOWER on IntegriCloud