blob: 17299dcb7b6ce753a62197c4d2ebb4189a05ed4e [file] [log] [blame]
Bill Wendling95cae882013-05-02 19:18:03 +00001// RUN: %clang_cc1 -triple x86_64-apple-macosx10.8 -std=c++11 -S -emit-llvm %s -o - | FileCheck %s
2
3// CHECK: @a = internal thread_local global
4// CHECK: @_tlv_atexit({{.*}}@_ZN1AD1Ev
5
6struct A {
7 ~A();
8};
9
10thread_local A a;