xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/encode-cstyle-method.m (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1f4a2713aSLionel Sambuc// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5  -emit-llvm -o - %s | FileCheck -check-prefix CHECK-LP64 %s
2f4a2713aSLionel Sambuc// rdar: // 7445205
3f4a2713aSLionel Sambuc
4f4a2713aSLionel Sambuc@interface Foo
5f4a2713aSLionel Sambuc- (id)test:(id)one, id two;
6f4a2713aSLionel Sambuc@end
7f4a2713aSLionel Sambuc
8f4a2713aSLionel Sambuc@implementation Foo
9f4a2713aSLionel Sambuc- (id)test:(id )one, id two {return two; } @end
10f4a2713aSLionel Sambuc
11*0a6a1f1dSLionel Sambuc// CHECK-LP64: private global [11 x i8] c"@24@0:8@16
12