From 256149524afec00869c1a2af8f2ef8fe18d97a45 Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Mon, 5 Jan 2009 12:52:35 -0500 Subject: [PATCH] re PR c++/38701 (ICE with defaulted function) PR c++/38701 * decl.c (cp_finish_decl): Clear DECL_INITIAL for invalid defaulting. PR c++/38702 * class.c (defaultable_fn_p): Only operator== can be a copy assignment operator. From-SVN: r143082 --- gcc/cp/cp-tree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index ff43bc7..9c89d96 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -1878,7 +1878,7 @@ struct lang_decl GTY(()) (IDENTIFIER_OPNAME_P (DECL_NAME (NODE)) \ ? DECL_LANG_SPECIFIC (NODE)->u.f.operator_code : ERROR_MARK) -/* Nonzero if NODE is an assignment operator. */ +/* Nonzero if NODE is an assignment operator (including += and such). */ #define DECL_ASSIGNMENT_OPERATOR_P(NODE) \ (DECL_LANG_SPECIFIC (NODE)->decl_flags.assignment_operator_p) -- 2.7.4