aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/runtime-abi-match.m
blob: ef391724ece0cd1fb4fa6b74372879d0ae70eab3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// RUN: %clang -target armv7-windows -fobjc-runtime=ios -O1 -fexceptions -S -emit-llvm %s -o - | FileCheck %s
// REQUIRES: arm-registered-target

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