Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / objc / hidden-ivars / InternalDefiner.m
blob1a10ce021ce3a769f657b845950ec27f5e230c78
1 #import "InternalDefiner.h"
3 @interface InternalDefiner () {
4     uintptr_t bar;
7 @end
9 @implementation InternalDefiner
11 -(id)init
13     if (self = [super init])
14     {
15         foo = 2;
16         bar = 3;
17     }
18     return self;
21 -(id)initWithFoo:(uintptr_t)f andBar:(uintptr_t)b
23     if (self = [super init])
24     {
25         foo = f;
26         bar = b;
27     }
28     return self;
31 @end