summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenObjC/runtime-abi-match.m
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CodeGenObjC/runtime-abi-match.m')
-rw-r--r--clang/test/CodeGenObjC/runtime-abi-match.m24
1 files changed, 24 insertions, 0 deletions
diff --git a/clang/test/CodeGenObjC/runtime-abi-match.m b/clang/test/CodeGenObjC/runtime-abi-match.m
new file mode 100644
index 00000000000..818f5ad53ee
--- /dev/null
+++ b/clang/test/CodeGenObjC/runtime-abi-match.m
@@ -0,0 +1,24 @@
+// RUN: %clang -target armv7-windows -fobjc-runtime=ios -O1 -fexceptions -S -emit-llvm %s -o - | FileCheck %s
+
+void (*f)(id);
+void (*g)(void);
+void h(void);
+
+@interface NSNumber
++ (NSNumber *)numberWithInt:(int)i;
+@end
+
+void i(void) {
+ @try {
+ @throw(@1);
+ } @catch (id i) {
+ (*f)(i);
+ (*g)();
+ }
+}
+
+// CHECK: call arm_aapcs_vfpcc i8* @objc_begin_catch
+// CHECK: call arm_aapcs_vfpcc void @objc_end_catch
+// CHECK-NOT: call i8* @objc_begin_catch
+// CHECK-NOT: call void @objc_end_catch
+
OpenPOWER on IntegriCloud