summaryrefslogtreecommitdiff
path: root/gcc/cp/ptree.c
diff options
context:
space:
mode:
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>2017-06-27 15:26:38 +0000
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>2017-06-27 15:26:38 +0000
commit3461db541e63afe7b06f08b02642bd519addba56 (patch)
treebaf9396850db799ebf00b38cd49bf52b38e7b9ef /gcc/cp/ptree.c
parent2fbe1dc9462b40fbb30e24ce19579541a473c275 (diff)
downloadgcc-3461db541e63afe7b06f08b02642bd519addba56.tar.gz
Kill IDENTIFIER_TEMPLATE.
* cp-tree.h (lang_identifier): Remove class_template_info field. (IDENTIFIER_TEMPLATE): Delete. * name-lookup.c (constructor_name_full): Subsume into ... (constructor_name): ... here. Don't check IDENTIFIER_TEMPLATE. (constructor_name_p): Likewise. * mangle.c (write_source_name): Likewise. * ptree.c (cxx_print_identifier): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@249693 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/ptree.c')
-rw-r--r--gcc/cp/ptree.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/cp/ptree.c b/gcc/cp/ptree.c
index 7b69dbe2b89..d377efc8cc5 100644
--- a/gcc/cp/ptree.c
+++ b/gcc/cp/ptree.c
@@ -181,7 +181,6 @@ cxx_print_identifier (FILE *file, tree node, int indent)
fprintf (file, "%s local bindings <%p>", get_identifier_kind_name (node),
(void *) IDENTIFIER_BINDING (node));
print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
- print_node (file, "template", IDENTIFIER_TEMPLATE (node), indent + 4);
}
void