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]
/
clang
/
test
/
Index
/
Inputs
/
t2.m
blob
3f103eeb1dc72c830ce9979a1bef4b8ee72d5a25
1
#include "objc.h"
2
3
static void foo() {
4
Sub *sub;
5
int x = [sub my_var];
6
[sub my_method:x];
7
[Sub my_method:x];
8
}
9
10
@implementation Sub
11
-(void) my_method: (int)param {
12
}
13
@end