[X86] Use NSW/NUW flags on ISD::TRUNCATE nodes to improve X86 PACKSS/PACKUS lowering...
[llvm-project.git] / lldb / test / API / lang / objc / real-definition / Bar.m
blob21c39066f8eec1c3bd55e825343f539811553b16
1 #import "Bar.h"
3 @interface InternalClass : NSObject {
4     @public
5     NSString *foo;
6     NSString *bar;
8 @end
10 @implementation InternalClass
11 @end
13 @interface Bar () 
15     NSString *_hidden_ivar;
18 @end
20 @implementation Bar
22 - (id)init
24     self = [super init];
25     if (self) {
26         _hidden_ivar = [NSString stringWithFormat:@"%p: @Bar", self];
27     }
28     return self; // Set breakpoint where Bar is an implementation
31 - (void)dealloc
33     [_hidden_ivar release];
34     [super dealloc];
37 - (NSString *)description
39     return [_hidden_ivar copyWithZone:NULL];
42 @end