diff options
author | Jason Merrill <jason@redhat.com> | 2009-07-29 16:35:40 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2009-07-29 16:35:40 -0400 |
commit | 8b334f7b0967171297c275cd9c922a84508c3440 (patch) | |
tree | 8967d064fe0fb79f53b568377a57adbd38c20fd3 /gcc | |
parent | 9e34da8b076782c692a7e4fa6587fd19764d9b2d (diff) | |
download | gcc-8b334f7b0967171297c275cd9c922a84508c3440.zip gcc-8b334f7b0967171297c275cd9c922a84508c3440.tar.gz gcc-8b334f7b0967171297c275cd9c922a84508c3440.tar.bz2 |
re PR c++/14912 (Do not print default template arguments in error messages)
PR c++/14912
* cp-tree.h (enum tsubst_flags): Add tf_no_class_instantiations.
* error.c (count_non_default_template_args): Pass it.
* pt.c (tsubst) [TYPENAME_TYPE]: Don't complete type if it's set.
From-SVN: r150223
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/cp/cp-tree.h | 2 | ||||
-rw-r--r-- | gcc/cp/error.c | 5 | ||||
-rw-r--r-- | gcc/cp/pt.c | 3 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/template/defarg13.C | 19 |
6 files changed, 39 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 7438541..c52c6da 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,10 @@ +2009-07-29 Jason Merrill <jason@redhat.com> + + PR c++/14912 + * cp-tree.h (enum tsubst_flags): Add tf_no_class_instantiations. + * error.c (count_non_default_template_args): Pass it. + * pt.c (tsubst) [TYPENAME_TYPE]: Don't complete type if it's set. + 2009-07-29 Richard Guenther <rguenther@suse.de> PR c++/40834 diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index 2bc2d62..dcad934 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -3616,6 +3616,8 @@ enum tsubst_flags { conversion. */ tf_no_access_control = 1 << 7, /* Do not perform access checks, even when issuing other errors. */ + /* Do not instantiate classes (used by count_non_default_template_args). */ + tf_no_class_instantiations = 1 << 8, /* Convenient substitution flags combinations. */ tf_warning_or_error = tf_warning | tf_error }; diff --git a/gcc/cp/error.c b/gcc/cp/error.c index c5310ff..25a0580 100644 --- a/gcc/cp/error.c +++ b/gcc/cp/error.c @@ -182,7 +182,10 @@ count_non_default_template_args (tree args, tree params) if (uses_template_parms (def)) { ++processing_template_decl; - def = tsubst_copy_and_build (def, args, tf_none, NULL_TREE, false, true); + /* This speculative substitution must not cause any classes to be + instantiated that otherwise wouldn't be. */ + def = tsubst_copy_and_build (def, args, tf_no_class_instantiations, + NULL_TREE, false, true); --processing_template_decl; } if (!cp_tree_equal (TREE_VEC_ELT (inner_args, last), def)) diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index de9f828..ed45324 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -9890,7 +9890,8 @@ tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl) But, such constructs have already been resolved by this point, so here CTX really should have complete type, unless it's a partial instantiation. */ - ctx = complete_type (ctx); + if (!(complain & tf_no_class_instantiations)) + ctx = complete_type (ctx); if (!COMPLETE_TYPE_P (ctx)) { if (complain & tf_error) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 0e55fab..e3b6103 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2009-07-29 Jason Merrill <jason@redhat.com> + + PR c++/14912 + * g++.dg/template/defarg13.C: New. + 2009-07-29 Richard Guenther <rguenther@suse.de> PR c++/40834 diff --git a/gcc/testsuite/g++.dg/template/defarg13.C b/gcc/testsuite/g++.dg/template/defarg13.C new file mode 100644 index 0000000..ba2980b --- /dev/null +++ b/gcc/testsuite/g++.dg/template/defarg13.C @@ -0,0 +1,19 @@ +// PR c++/14912 +// Bug: We were instantiating A<B> in order to compare it to the matching +// argument for C<B,B>, which fails. + +template <class T> +struct A +{ + typedef typename T::F F; +}; + +struct B { }; + +template <class T, class U = typename A<T>::F > +struct C +{ + typename T::F f; // { dg-error "no type" } +}; + +C<B, B> c; // { dg-message "instantiated" } |