aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/messages.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenObjC/messages.m')
-rw-r--r--test/CodeGenObjC/messages.m27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/CodeGenObjC/messages.m b/test/CodeGenObjC/messages.m
new file mode 100644
index 000000000000..f9b9be6e11a3
--- /dev/null
+++ b/test/CodeGenObjC/messages.m
@@ -0,0 +1,27 @@
+// RUN: clang-cc -fnext-runtime --emit-llvm -o %t %s &&
+// RUN: grep "objc_msgSend" %t | count 6 &&
+// RUN: clang-cc -fgnu-runtime --emit-llvm -o %t %s &&
+// RUN: grep "objc_msg_lookup" %t | count 6 &&
+// RUN: clang-cc -fgnu-runtime -fobjc-sender-dependent-dispatch --emit-llvm -o %t %s &&
+// RUN: grep "objc_msg_lookup_sender" %t | count 6
+// RUN: true
+
+typedef struct {
+ int x;
+ int y;
+ int z[10];
+} MyPoint;
+
+void f0(id a) {
+ int i;
+ MyPoint pt = { 1, 2};
+
+ [a print0];
+ [a print1: 10];
+ [a print2: 10 and: "hello" and: 2.2];
+ [a takeStruct: pt ];
+
+ void *s = @selector(print0);
+ for (i=0; i<2; ++i)
+ [a performSelector:s];
+}