aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/pt.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cp/pt.cc')
-rw-r--r--gcc/cp/pt.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/pt.cc b/gcc/cp/pt.cc
index e77c48e..a95ce6e 100644
--- a/gcc/cp/pt.cc
+++ b/gcc/cp/pt.cc
@@ -21519,7 +21519,7 @@ tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
if (DECL_TEMPLATE_PARM_P (t))
RETURN (RECUR (DECL_INITIAL (t)));
- if (!uses_template_parms (DECL_CONTEXT (t)))
+ if (!args || !uses_template_parms (DECL_CONTEXT (t)))
RETURN (t);
/* Unfortunately, we cannot just call lookup_name here.