summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenObjC/exceptions-nonfragile.m
blob: 41cda2c0a9ce6a921f622b305f811dd8047018b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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;
  }
}
OpenPOWER on IntegriCloud