blob: 3815bb3430c0d98efdeeb4abf6ea3278302d3462 [file] [log] [blame]
John McCall5fb5df92012-06-20 06:18:46 +00001// RUN: %clang_cc1 -triple i386-unknown-unknown -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-X86-32 %s
2// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-X86-64 %s
Daniel Dunbardf0e62d2009-09-17 04:01:40 +00003
4@interface A
5-(void) im0;
6-(void) im1: (int) x;
7-(void) im2: (int) x, ...;
8@end
9
10void f0(A *a) {
Fariborz Jahanian557c1ed2011-02-28 21:19:34 +000011 // CHECK-X86-32: call void bitcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*)*)
12 // CHECK-X86-64: call void bitcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*)*)
Daniel Dunbardf0e62d2009-09-17 04:01:40 +000013 [a im0];
14}
15
16void f1(A *a) {
Fariborz Jahanian557c1ed2011-02-28 21:19:34 +000017 // CHECK-X86-32: call void bitcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*, i32)*)
18 // CHECK-X86-64: call void bitcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*, i32)*)
Daniel Dunbardf0e62d2009-09-17 04:01:40 +000019 [a im1: 1];
20}
21
22void f2(A *a) {
David Blaikied6c88ec2015-04-16 23:25:00 +000023 // CHECK-X86-32: call void (i8*, i8*, i32, ...) bitcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*, i32, ...)*)
24 // CHECK-X86-64: call void (i8*, i8*, i32, ...) bitcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*, i8*, i32, ...)*)
Daniel Dunbardf0e62d2009-09-17 04:01:40 +000025 [a im2: 1, 2];
26}
27
28@interface B : A @end
29@implementation B : A
30-(void) foo {
Chris Lattnera5f58b02011-07-09 17:41:47 +000031 // CHECK-X86-32: call void bitcast (i8* (%struct._objc_super*, i8*, ...)* @objc_msgSendSuper to void (%struct._objc_super*, i8*, i32)*)
32 // CHECK-X86-64: call void bitcast (i8* (%struct._objc_super*, i8*, ...)* @objc_msgSendSuper to void (%struct._objc_super*, i8*, i32)*)
Daniel Dunbardf0e62d2009-09-17 04:01:40 +000033 [super im1: 1];
34}
35-(void) bar {
David Blaikied6c88ec2015-04-16 23:25:00 +000036 // CHECK-X86-32: call void (%struct._objc_super*, i8*, i32, ...) bitcast (i8* (%struct._objc_super*, i8*, ...)* @objc_msgSendSuper to void (%struct._objc_super*, i8*, i32, ...)*)
37 // CHECK-X86-64: call void (%struct._objc_super*, i8*, i32, ...) bitcast (i8* (%struct._objc_super*, i8*, ...)* @objc_msgSendSuper to void (%struct._objc_super*, i8*, i32, ...)*)
Daniel Dunbardf0e62d2009-09-17 04:01:40 +000038 [super im2: 1, 2];
39}
40
41@end