decl.c (poplevel): Don't warn about unused vars in template scope.
authorJason Merrill <jason@redhat.com>
Mon, 22 Sep 2014 16:31:09 +0000 (12:31 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Mon, 22 Sep 2014 16:31:09 +0000 (12:31 -0400)
* decl.c (poplevel): Don't warn about unused vars in template scope.
* error.c (dump_decl): Handle variable templates.

From-SVN: r215472

gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/cp/error.c
gcc/testsuite/g++.dg/cpp1y/var-templ12.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp1y/var-templ13.C [new file with mode: 0644]

index 857f58d4264101c018beb9456383af529dfbd51e..3dc8c7c3a3ba009ea9f4bd83666d28887fdf141a 100644 (file)
@@ -1,3 +1,8 @@
+2014-09-22  Jason Merrill  <jason@redhat.com>
+
+       * decl.c (poplevel): Don't warn about unused vars in template scope.
+       * error.c (dump_decl): Handle variable templates.
+
 2014-09-20  Jason Merrill  <jason@redhat.com>
 
        PR c++/62017
index fe5a4af17b5a36632e4346394e5065a43d64be49..12a9f43de2f809b3aa759dd2b036d814eaa66c27 100644 (file)
@@ -624,6 +624,7 @@ poplevel (int keep, int reverse, int functionbody)
 
   /* Before we remove the declarations first check for unused variables.  */
   if ((warn_unused_variable || warn_unused_but_set_variable)
+      && current_binding_level->kind != sk_template_parms
       && !processing_template_decl)
     for (tree d = getdecls (); d; d = TREE_CHAIN (d))
       {
index 86fd4056f8d7416c128c69087cc7dded36927cda..a03bfe12c163d859c8bee01fe451b2aabb311072 100644 (file)
@@ -1044,6 +1044,18 @@ dump_decl (cxx_pretty_printer *pp, tree t, int flags)
     case FIELD_DECL:
     case PARM_DECL:
       dump_simple_decl (pp, t, TREE_TYPE (t), flags);
+
+      /* Handle variable template specializations.  */
+      if (TREE_CODE (t) == VAR_DECL
+         && DECL_LANG_SPECIFIC (t)
+         && DECL_TEMPLATE_INFO (t)
+         && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (t)))
+       {
+         pp_cxx_begin_template_argument_list (pp);
+         tree args = INNERMOST_TEMPLATE_ARGS (DECL_TI_ARGS (t));
+         dump_template_argument_list (pp, args, flags);
+         pp_cxx_end_template_argument_list (pp);
+       }
       break;
 
     case RESULT_DECL:
diff --git a/gcc/testsuite/g++.dg/cpp1y/var-templ12.C b/gcc/testsuite/g++.dg/cpp1y/var-templ12.C
new file mode 100644 (file)
index 0000000..49ea588
--- /dev/null
@@ -0,0 +1,10 @@
+// { dg-do compile { target c++14 } }
+// { dg-options "-Wall" }
+
+template <class T> T x;
+template <> int x<int> = 0;
+
+int main()
+{
+  return x<int>;
+}
diff --git a/gcc/testsuite/g++.dg/cpp1y/var-templ13.C b/gcc/testsuite/g++.dg/cpp1y/var-templ13.C
new file mode 100644 (file)
index 0000000..e398d22
--- /dev/null
@@ -0,0 +1,5 @@
+// { dg-do compile { target c++14 } }
+
+template <class T> T x;
+template <> int x<int> = 0;
+template <> int x<int> = 0;    // { dg-error "x<int>" }