StmtPrinter: factor out arg printing code to PrintCallArgs
[clang.git] / test / CodeGenObjC / objc2-weak-ivar.m
blob8c91a80b68635cf4eb3facd3789b7db13e536fd4
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s
2 // RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s
3 @class NSObject;
5 @interface Foo  {
6 @public
7   __weak NSObject *nsobject;
9 @end
11 @implementation Foo @end