blob: 627b913ab06724afe17c86b1e24b07f333ecd18e [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -triple i386-apple-darwin9 -emit-llvm %s -o - | FileCheck %s
2
3
4extern int printf(const char*, ...);
5
6int main()
7{
8 @try {
9 @throw @"foo";
10 } @catch (id e) {
11 @try {
12// CHECK: call void @objc_exception_throw
13 @throw;
14 } @catch (id e) {
15 if (e) {
16 printf("caught \n");
17 } else {
18 printf("caught (WRONG)\n");
19 }
20 } @catch (...) {
21 printf("caught nothing (WRONG)\n");
22 }
23 }
24}
25