aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/xref.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cp/xref.c')
-rw-r--r--gcc/cp/xref.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/cp/xref.c b/gcc/cp/xref.c
index 4a300c2..283771b 100644
--- a/gcc/cp/xref.c
+++ b/gcc/cp/xref.c
@@ -397,6 +397,18 @@ GNU_xref_decl (fndecl,decl)
decl = TYPE_NAME (decl);
uselin = TRUE;
}
+ else if (TREE_CODE (decl) == TEMPLATE_DECL)
+ {
+ if (DECL_TEMPLATE_IS_CLASS (decl))
+ cls = "CLASSTEMP";
+ else if (TREE_CODE (DECL_RESULT (decl)) == FUNCTION_DECL)
+ cls = "FUNCTEMP";
+ else if (TREE_CODE (DECL_RESULT (decl)) == VAR_DECL)
+ cls = "VARTEMP";
+ else
+ my_friendly_abort (358);
+ uselin = TRUE;
+ }
else cls = "UNKNOWN";
if (decl == NULL || DECL_NAME (decl) == NULL) return;