aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/template-linkage.cpp
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2013-01-10 01:46:29 +0000
committerNick Lewycky <nicholas@mxc.ca>2013-01-10 01:46:29 +0000
commitf91cbd54c97fceaf84539e7234b27ad54bba735b (patch)
tree4183e75ddd64a509726d0b83069a8f0f7983f754 /test/CodeGenCXX/template-linkage.cpp
parent7005b907ea159c8e74e81f85269777429bc18d3c (diff)
Don't assert in codegen on static data members which have NoLinkage. Fixes
PR14825! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172031 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/template-linkage.cpp')
-rw-r--r--test/CodeGenCXX/template-linkage.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/CodeGenCXX/template-linkage.cpp b/test/CodeGenCXX/template-linkage.cpp
index 20508c1596..3acd12ef0b 100644
--- a/test/CodeGenCXX/template-linkage.cpp
+++ b/test/CodeGenCXX/template-linkage.cpp
@@ -1,4 +1,7 @@
// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s
+
+// CHECK: Outer5Inner{{.*}}localE6memberE = external global
+
template<typename T> struct A {
virtual void f(T) { }
inline void g() { }
@@ -42,3 +45,20 @@ void test_X1() {
X1<char> i1c;
}
+namespace PR14825 {
+struct Outer {
+ template <typename T> struct Inner {
+ static int member;
+ };
+ template <typename T> void Get() {
+ int m = Inner<T>::member;
+ }
+};
+
+void test() {
+ struct local {};
+ Outer o;
+ typedef void (Outer::*mptr)();
+ mptr method = &Outer::Get<local>;
+}
+}