brintos

brintos / llvm-project-archived public Read only

0
0
Text · 248 B · db1da31 Raw
17 lines · plain
1// RUN: %clang_cc1 -emit-llvm -triple=i686-apple-darwin8 -o %t %s2// RUNX: %clang_cc1 -emit-llvm -o %t %s3 4@interface A5 -(void) setOk:(int)arg;6 -(int) ok;7 8 -(void) setX:(int)arg;9 -(int) x;10@end11 12void f0(A *a) {13   a.x = 1;   14   a.ok = a.x;15}16 17