aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/threadsafe-statics-exceptions.cpp
blob: fcb6ccefea0b9418419a6cbb0ef6ee8864876416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// RUN: %clang_cc1 -emit-llvm -o - -fexceptions -triple x86_64-apple-darwin10 %s | FileCheck %s

struct X {
  X();
  ~X();
};

struct Y { };

// CHECK: define void @_Z1fv
void f() {
  // CHECK: call i32 @__cxa_guard_acquire(i64* @_ZGVZ1fvE1x)
  // CHECK: invoke void @_ZN1XC1Ev
  // CHECK: call void @__cxa_guard_release(i64* @_ZGVZ1fvE1x)
  // CHECK: call i32 @__cxa_atexit
  // CHECK: br
  static X x;
  // CHECK: call void @__cxa_guard_abort(i64* @_ZGVZ1fvE1x)
  // CHECK: call void @__cxa_rethrow() noreturn
  // CHECK: unreachable

  // CHECK: call i8* @__cxa_allocate_exception
  throw Y();
}