summaryrefslogtreecommitdiffstats
path: root/test/CXX/except/except.spec/p9-dynamic.cpp
blob: 1e7b29479fbdb4301789b4ef6b3c54fe4c27777c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - -fcxx-exceptions -fexceptions | FileCheck %s

void external();

void target() throw(int)
{
  // CHECK: invoke void @_Z8externalv()
  external();
}
// CHECK:      landingpad { i8*, i32 }
// CHECK-NEXT:   filter [1 x i8*] [i8* bitcast (i8** @_ZTIi to i8*)]
// CHECK:      call void @__cxa_call_unexpected
OpenPOWER on IntegriCloud