Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / objc / ivar-IMP / myclass.m
blob6515180f9220bad7c25fe3eb564d5e83d90c8011
1 #import <objc/NSObject.h>
2 #import "myclass.h"
4 @implementation MyClass
6   IMP myImp;
8 - (id)init {
9   if (self = [super init])
10   {
11     SEL theSelector = @selector(init);
12     self->myImp = [self methodForSelector:theSelector]; 
13   }
14   return self;
16 @end