diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2017-11-03 01:26:01 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2017-11-03 01:26:01 +0000 |
commit | e124612eda3561d10fa5749583e0fabf813e2c82 (patch) | |
tree | 3eae4debaf829e3309f9f805e89d2f1a70d5fb8a /clang/test/CodeGenCXX/cxx1z-inline-variables.cpp | |
parent | 9196ed1be11f3c15cf58f6a3ef1b9b73f8722075 (diff) | |
download | bcm5719-llvm-e124612eda3561d10fa5749583e0fabf813e2c82.tar.gz bcm5719-llvm-e124612eda3561d10fa5749583e0fabf813e2c82.zip |
[c++17] Visit class template explicit specializations just like all other class definitions in codegen.
If an explicit specialization has a static data member, it may be a definition and we may need to register it for emission.
llvm-svn: 317296
Diffstat (limited to 'clang/test/CodeGenCXX/cxx1z-inline-variables.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/cxx1z-inline-variables.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/cxx1z-inline-variables.cpp b/clang/test/CodeGenCXX/cxx1z-inline-variables.cpp index 0d2ec92a7af..2d16acd8a8c 100644 --- a/clang/test/CodeGenCXX/cxx1z-inline-variables.cpp +++ b/clang/test/CodeGenCXX/cxx1z-inline-variables.cpp @@ -67,6 +67,18 @@ int &use3 = X<int>::a; template<> int X<int>::b = 20; template<> inline int X<int>::c = 30; +template<typename T> struct Y; +template<> struct Y<int> { + static constexpr int a = 123; + static constexpr int b = 456; + static constexpr int c = 789; +}; +// CHECK: @_ZN1YIiE1aE = weak_odr constant i32 123 +constexpr int Y<int>::a; +// CHECK: @_ZN1YIiE1bE = linkonce_odr constant i32 456 +const int &yib = Y<int>::b; +// CHECK-NOT: @_ZN1YIiE1cE + // CHECK-LABEL: define {{.*}}global_var_init // CHECK: call i32 @_Z1fv |