[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGenCXX / template-param-objects-linkage.cpp
blob63e7d8c6468695d981742db0ba3f26674097dee5
1 // RUN: %clang_cc1 -triple x86_64-linux-gnu -std=c++20 %s -emit-llvm -o - | FileCheck %s
3 struct S { char buf[32]; };
4 template<S s> constexpr const char* f() { return s.buf; }
5 const char* fbuf = f<S{"a"}>();
6 // CHECK: @_ZTAXtl1StlA32_cLc97EEEE = linkonce_odr constant { <{ i8, [31 x i8] }> }
8 namespace {
9 struct UN { char buf[64]; };
11 template <UN un> constexpr const char* g() { return un.buf; }
12 const char* gbuf = g<UN{"b"}>();
13 // CHECK: @_ZTAXtlN12_GLOBAL__N_12UNEtlA64_cLc98EEEE = internal constant { <{ i8, [63 x i8] }> }
15 struct Foo { int *i; };
16 int m = 0;
17 namespace { int n; }
19 template <Foo foo>
20 const int* h() { return foo.i; }
22 const int* hm = h<Foo{&m}>();
23 // CHECK: @_ZTAXtl3FooadL_Z1mEEE = linkonce_odr constant %struct.Foo { ptr @m }
25 const int* hn = h<Foo{&n}>();
26 // CHECK: @_ZTAXtl3FooadL_ZN12_GLOBAL__N_11nEEEE = internal constant %struct.Foo { ptr @_ZN12_GLOBAL__N_11nE }