blob: 10681dbcc5928e30e1fc15de1f9eaf6e3900b93d [file] [log] [blame]
Fariborz Jahanian7e68ba52012-06-29 22:54:56 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm -o %t %s
2// RUN: FileCheck < %t %s
3// rdar://11777609
4
5typedef struct {} Z;
6
7@interface A
8-(void)bar:(Z)a;
9-(void)foo:(Z)a : (char*)b : (Z)c : (double) d;
10@end
11
12@implementation A
13-(void)bar:(Z)a {}
14-(void)foo:(Z)a: (char*)b : (Z)c : (double) d {}
15@end
16
17// CHECK: internal global [14 x i8] c"v16@0:8{?=}16
18// CHECK: internal global [26 x i8] c"v32@0:8{?=}16*16{?=}24d24
19