re PR c++/65719 (Link error with constexpr variable template)
authorJason Merrill <jason@redhat.com>
Fri, 12 Jun 2015 18:16:22 +0000 (14:16 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Fri, 12 Jun 2015 18:16:22 +0000 (14:16 -0400)
PR c++/65719
* pt.c (tsubst_decl) [VAR_DECL]: Mark namespace-scope
variables as DECL_NOT_REALLY_EXTERN.

From-SVN: r224442

gcc/cp/ChangeLog
gcc/cp/pt.c
gcc/testsuite/g++.dg/cpp1y/var-templ29.C [new file with mode: 0644]

index 39b5a08fe8fad65170fff62128c653c87151c569..b18a893a2ca831122a04ce6d3f57364119aedef5 100644 (file)
@@ -1,3 +1,9 @@
+2015-06-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/65719
+       * pt.c (tsubst_decl) [VAR_DECL]: Mark namespace-scope
+       variables as DECL_NOT_REALLY_EXTERN.
+
 2015-06-11  Jason Merrill  <jason@redhat.com>
 
        PR c++/66445
index 7f04fe618b48d1b89ad2b1179b3ab6e1d0218d96..ea8c8b65a3fefa91fd9b5526e1503b31eebc3bfc 100644 (file)
@@ -11306,8 +11306,7 @@ tsubst_decl (tree t, tree args, tsubst_flags_t complain)
          {
            /* T is a static data member or namespace-scope entity.
               We have to substitute into namespace-scope variables
-              (even though such entities are never templates) because
-              of cases like:
+              (not just variable templates) because of cases like:
               
                 template <class T> void f() { extern T t; }
 
@@ -11468,6 +11467,8 @@ tsubst_decl (tree t, tree args, tsubst_flags_t complain)
               initializer is present.  We mimic the non-template
               processing here.  */
            DECL_EXTERNAL (r) = 1;
+           if (DECL_NAMESPACE_SCOPE_P (t))
+             DECL_NOT_REALLY_EXTERN (r) = 1;
 
            DECL_TEMPLATE_INFO (r) = build_template_info (tmpl, argvec);
            SET_DECL_IMPLICIT_INSTANTIATION (r);
diff --git a/gcc/testsuite/g++.dg/cpp1y/var-templ29.C b/gcc/testsuite/g++.dg/cpp1y/var-templ29.C
new file mode 100644 (file)
index 0000000..22f5b0b
--- /dev/null
@@ -0,0 +1,13 @@
+// PR c++/65719
+// { dg-do link { target c++14 } }
+
+struct FunctionObject {
+    void operator()() const { }
+};
+
+template <typename T>
+constexpr FunctionObject f{};
+
+int main() {
+    f<int>();
+}