blob: 206d496252d87579e40e45d479afab5dcb30b059 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -emit-llvm -triple=i686-apple-darwin8 -o %t %s
2// RUNX: clang-cc -emit-llvm -o %t %s
Fariborz Jahanian43f44702008-11-22 22:30:21 +00003
4@interface A
5 -(void) setOk:(int)arg;
6 -(int) ok;
7
8 -(void) setX:(int)arg;
9 -(int) x;
10@end
11
12void f0(A *a) {
13 a.x = 1;
14 a.ok = a.x;
15}
16