llvm-project/clang/test/CodeGenObjC/exceptions-nonfragile.m
John McCall d509182336 Coding by inspection has its problems.
llvm-svn: 116672
2010-10-16 16:34:08 +00:00

18 lines
336 B
Objective-C

// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fobjc-nonfragile-abi -fexceptions -O2 -o - %s | FileCheck %s
// rdar://problem/8535238
// CHECK: declare void @objc_exception_rethrow()
void protos() {
extern void foo();
@try {
foo();
} @catch (id e) {
@throw;
}
}
void throwing() {
@throw(@"error!");
}