* ptree.c (cxx_print_xnode) [TEMPLATE_PARM_INDEX]: Dump the decl.
authorJason Merrill <jason@redhat.com>
Fri, 21 Oct 2016 19:45:39 +0000 (15:45 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Fri, 21 Oct 2016 19:45:39 +0000 (15:45 -0400)
From-SVN: r241424

gcc/cp/ChangeLog
gcc/cp/ptree.c

index f2c23a230168ee0c37522716aff4691db3a43910..3d62d68edd0bb04af0f9712ab50961f0d693308a 100644 (file)
@@ -1,3 +1,7 @@
+2016-10-21  Jason Merrill  <jason@redhat.com>
+
+       * ptree.c (cxx_print_xnode) [TEMPLATE_PARM_INDEX]: Dump the decl.
+
 2016-10-21  Jakub Jelinek  <jakub@redhat.com>
 
        * cp-objcp-common.c (cp_decl_dwarf_attribute): Handle
index 5726f96b295aa0db0a58f1b7b1a6ddd7a58473ca..e3e5e33f104c679a3b9afd440819623e2af2cf51 100644 (file)
@@ -236,6 +236,7 @@ cxx_print_xnode (FILE *file, tree node, int indent)
       print_node (file, "chain", TREE_CHAIN (node), indent+4);
       break;
     case TEMPLATE_PARM_INDEX:
+      print_node (file, "decl", TEMPLATE_PARM_DECL (node), indent+4);
       indent_to (file, indent + 3);
       fprintf (file, "index %d level %d orig_level %d",
               TEMPLATE_PARM_IDX (node), TEMPLATE_PARM_LEVEL (node),