StmtPrinter: factor out arg printing code to PrintCallArgs
[clang.git] / test / CodeGenObjC / objc2-retain-codegen.m
blob9f6620619ecdbdd967780a4a63b18971828fb743
1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -fobjc-gc-only -emit-llvm -o %t %s
2 // RUN: %clang_cc1 -x objective-c++ -triple x86_64-unknown-unknown -fobjc-gc-only -emit-llvm -o %t %s
4 @interface I0 {
5   I0 *_f0;
7 @property (retain) id p0;
8 @end 
10 @implementation I0 
11   @synthesize p0 = _f0;
12 @end