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
[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
implicit-property.m
blob
db1da314b9e65471bb52b468513fcd93d40d8030
1
// RUN: %clang_cc1 -emit-llvm -triple=i686-apple-darwin8 -o %t %s
2
// RUNX: %clang_cc1 -emit-llvm -o %t %s
3
4
@interface A
5
-(void) setOk:(int)arg;
6
-(int) ok;
7
8
-(void) setX:(int)arg;
9
-(int) x;
10
@end
11
12
void f0(A *a) {
13
a.x = 1;
14
a.ok = a.x;
15
}
16