repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
lldb
/
test
/
API
/
lang
/
objc
/
ivar-IMP
/
myclass.m
blob
6515180f9220bad7c25fe3eb564d5e83d90c8011
1
#import <objc/NSObject.h>
2
#import "myclass.h"
3
4
@implementation MyClass
5
{
6
IMP myImp;
7
}
8
- (id)init {
9
if (self = [super init])
10
{
11
SEL theSelector = @selector(init);
12
self->myImp = [self methodForSelector:theSelector];
13
}
14
return self;
15
}
16
@end