From fb80065cb3771fe6cbc9b7b2eced0f2bdae295de Mon Sep 17 00:00:00 2001 From: Paolo Carlini <paolo@gcc.gnu.org> Date: Wed, 30 Jun 2010 20:46:46 +0000 Subject: [PATCH] re PR c++/44628 (ICE in cp_build_unary_op at cp/typeck.c:4671) /cp 2010-06-30 Paolo Carlini <paolo.carlini@oracle.com> PR c++/44628 * typeck.c (cp_build_unary_op): Early return error_mark_node when arg is NULL_TREE too. * call.c (convert_class_to_reference): Return error_mark_node when expr is NULL_TREE. /testsuite 2010-06-30 Paolo Carlini <paolo.carlini@oracle.com> PR c++/44628 * g++.dg/template/crash100.C: New. From-SVN: r161639 --- gcc/cp/ChangeLog | 12 ++++++++++-- gcc/cp/call.c | 3 +++ gcc/cp/typeck.c | 2 +- gcc/testsuite/ChangeLog | 5 +++++ gcc/testsuite/g++.dg/template/crash100.C | 24 ++++++++++++++++++++++++ 5 files changed, 43 insertions(+), 3 deletions(-) create mode 100644 gcc/testsuite/g++.dg/template/crash100.C diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index f72e7a6b97f6..3c6268de9b12 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,6 +1,14 @@ +2010-06-30 Paolo Carlini <paolo.carlini@oracle.com> + + PR c++/44628 + * typeck.c (cp_build_unary_op): Early return error_mark_node when + arg is NULL_TREE too. + * call.c (convert_class_to_reference): Return error_mark_node when + expr is NULL_TREE. + 2010-06-30 Michael Matz <matz@suse.de> - * repo.c ((finish_repo): Fix typo. + * repo.c (finish_repo): Fix typo. 2010-06-30 Nathan Froyd <froydnj@codesourcery.com> @@ -17,7 +25,7 @@ * tree.c: Include gimple.h. Do not include tree-flow.h * decl.c: Do not include tree-flow.h * Make-lang.in: Adjust dependencies. - + 2010-06-29 Nathan Froyd <froydnj@codesourcery.com> * decl.c (incomplete_var): Declare. Declare VECs containing them. diff --git a/gcc/cp/call.c b/gcc/cp/call.c index 7e632d0f1b3e..d03ecb161af1 100644 --- a/gcc/cp/call.c +++ b/gcc/cp/call.c @@ -1040,6 +1040,9 @@ convert_class_to_reference (tree reference_type, tree s, tree expr, int flags) struct z_candidate *cand; bool any_viable_p; + if (!expr) + return NULL; + conversions = lookup_conversions (s, /*lookup_template_convs_p=*/true); if (!conversions) return NULL; diff --git a/gcc/cp/typeck.c b/gcc/cp/typeck.c index 4383ef560a79..20345b551eda 100644 --- a/gcc/cp/typeck.c +++ b/gcc/cp/typeck.c @@ -4781,7 +4781,7 @@ cp_build_unary_op (enum tree_code code, tree xarg, int noconvert, tree val; const char *invalid_op_diag; - if (error_operand_p (arg)) + if (!arg || error_operand_p (arg)) return error_mark_node; if ((invalid_op_diag diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d9e9a4025f93..474e0963d753 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2010-06-30 Paolo Carlini <paolo.carlini@oracle.com> + + PR c++/44628 + * g++.dg/template/crash100.C: New. + 2010-06-30 Jan Hubicka <jh@suse.cz> * gcc.dg/tree-ssa/ipa-split-4.c: New testcase. diff --git a/gcc/testsuite/g++.dg/template/crash100.C b/gcc/testsuite/g++.dg/template/crash100.C new file mode 100644 index 000000000000..c67ae2eca38d --- /dev/null +++ b/gcc/testsuite/g++.dg/template/crash100.C @@ -0,0 +1,24 @@ +// PR c++/44628 + +template <typename T> +class Temp +{ + int Val; + public: + operator T&(void) { return Val; } + + virtual T& operator=(T a ) // { dg-error "overriding" } + { + Val = a; + return Val; + } +}; + +class Int : public Temp<int> +{ + public: + Int& operator=(int a) // { dg-error "conflicting return type" } + { + return (*this); + } +}; -- GitLab