// RUN: %clang_cc1 -std=c++1y -triple x86_64-linux-gnu -emit-llvm -o - %s | FileCheck %s // Check that we keep the 'extern' when we instantiate the definition of this // variable template specialization. template extern const int extern_redecl; template const int extern_redecl = 5; template const int extern_redecl; // CHECK: @_Z13extern_redeclIiE = weak_odr constant template struct Outer { template struct Inner { template static int arr[]; }; }; Outer outer_int; int init_arr(); template template template int Outer::Inner::arr[sizeof(T) + sizeof(U) + sizeof(V)] = { init_arr() }; int *p = Outer::Inner::arr; namespace PR35456 { // CHECK: @_ZN7PR354561nILi0EEE = linkonce_odr global i32 0 template int n; int *p = &n<0>; } // CHECK: @_ZN5OuterIA100_cE5InnerIA20_cE3arrIA3_cEE = linkonce_odr global [123 x i32] zeroinitializer // CHECK: @_ZGVN5OuterIA100_cE5InnerIA20_cE3arrIA3_cEE = linkonce_odr global // CHECK: @_ZTHN7PR4211112_GLOBAL__N_11nILi0EEE = internal alias {{.*}} @[[PR42111_CTOR:.*]] // CHECK: call {{.*}}@_Z8init_arrv // Ensure that we use guarded initialization for an instantiated thread_local // variable with internal linkage. namespace PR42111 { int f(); namespace { template thread_local int n = f(); } // CHECK: define {{.*}}@[[PR42111_CTOR]]( // CHECK: load {{.*}} @_ZGVN7PR4211112_GLOBAL__N_11nILi0EEE // CHECK: icmp eq i8 {{.*}}, 0 // CHECK: br i1 // CHECK: call i32 @_ZN7PR421111fEv( // CHECK: store i32 {{.*}}, i32* @_ZN7PR4211112_GLOBAL__N_11nILi0EEE // CHECK: store i8 1, i8* @_ZGVN7PR4211112_GLOBAL__N_11nILi0EEE int g() { return n<> + n<>; } }