public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* c++/8461
@ 2002-12-04 12:16 jason
  0 siblings, 0 replies; 4+ messages in thread
From: jason @ 2002-12-04 12:16 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR c++/8461; it has been noted by GNATS.

From: jason@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: c++/8461
Date: 4 Dec 2002 20:13:01 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Changes by:	jason@gcc.gnu.org	2002-12-04 12:13:01
 
 Modified files:
 	gcc            : ChangeLog integrate.c tree-inline.c tree.c 
 	gcc/cp         : ChangeLog call.c cp-lang.c cp-tree.h except.c 
 Added files:
 	gcc/testsuite/g++.dg/init: elide2.C 
 
 Log message:
 	PR c++/8461, c++/8625
 	* integrate.c (copy_decl_for_inlining): Handle explicit invisible
 	references.
 	* tree-inline.c (initialize_inlined_parameters): Likewise.
 	
 	2002-12-03  Jason Merrill  <jason@redhat.com>
 	
 	PR c++/8461, c++/8625
 	* call.c (convert_for_arg_passing): Don't mess with error_mark_node.
 	(cp_convert_parm_for_inlining): Remove.
 	* cp-lang.c (LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING):
 	Remove.
 	* cp-tree.h (ADDR_IS_INVISIREF): Remove.
 	* except.c (stabilize_throw_expr): Remove ADDR_IS_INVISIREF code.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=1.16053&r2=1.16054
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/integrate.c.diff?cvsroot=gcc&r1=1.204&r2=1.205
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree-inline.c.diff?cvsroot=gcc&r1=1.37&r2=1.38
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree.c.diff?cvsroot=gcc&r1=1.280&r2=1.281
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&r1=1.3068&r2=1.3069
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/call.c.diff?cvsroot=gcc&r1=1.340&r2=1.341
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/cp-lang.c.diff?cvsroot=gcc&r1=1.42&r2=1.43
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/cp-tree.h.diff?cvsroot=gcc&r1=1.772&r2=1.773
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/except.c.diff?cvsroot=gcc&r1=1.148&r2=1.149
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/init/elide2.C.diff?cvsroot=gcc&r1=NONE&r2=1.1
 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* c++/8461
@ 2002-12-14  9:16 jason
  0 siblings, 0 replies; 4+ messages in thread
From: jason @ 2002-12-14  9:16 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR c++/8461; it has been noted by GNATS.

From: jason@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: c++/8461
Date: 14 Dec 2002 17:11:31 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Branch: 	tree-ssa-20020619-branch
 Changes by:	jason@gcc.gnu.org	2002-12-14 09:11:31
 
 Modified files:
 	gcc            : ChangeLog calls.c explow.c expr.c integrate.c 
 	                 langhooks-def.h langhooks.c langhooks.h 
 	                 old-tree-inline.c tree-inline.c tree.h 
 	gcc/cp         : ChangeLog call.c cp-lang.c cp-simplify.c 
 	                 cp-tree.h except.c tree.c 
 
 Log message:
 	* tree.h (CALL_EXPR_HAS_RETURN_SLOT_ADDR): New macro.
 	* calls.c (expand_call): Handle it.
 	* tree-inline.c (struct inline_data): Remove target_exprs field.
 	(optimize_inline_calls): Don't initialize it.
 	(expand_call_inline): Don't modify it.  Handle
 	CALL_EXPR_HAS_RETURN_SLOT_ADDR.
 	(declare_return_variable): Take return slot addr.
 	* langhooks.h (copy_res_decl_for_inlining): Change target_exprs parm
 	to return_slot_addr.
 	* langhooks-def.h, langhooks.c: Adjust.
 	* explow.c (maybe_set_unchanging): Don't set RTX_UNCHANGING_P for
 	a decl with no DECL_INITIAL.
 	
 	* expr.c (expand_expr): Don't discard the target of a call which
 	returns in memory.
 	
 	PR c++/8461, c++/8625
 	* integrate.c (copy_decl_for_inlining): Handle explicit invisible
 	references.
 	* tree-inline.c (initialize_inlined_parameters): Likewise.
 	
 	cp/
 	* semantics.c (simplify_aggr_init_exprs_r): Also prepend the
 	return slot for normal functions.  Set CALL_EXPR_HAS_RETURN_SLOT_ADDR.
 	* tree.c (build_cplus_new): If the type isn't TREE_ADDRESSABLE,
 	don't bother with an AGGR_INIT_EXPR.
 	(cp_copy_res_decl_for_inlining): If the type isn't TREE_ADDRESSABLE,
 	just generate a new decl normally.  Take return slot parm.
 	* cp-tree.h: Adjust prototype.
 	
 	PR c++/8461, c++/8625
 	* call.c (convert_for_arg_passing): Don't mess with error_mark_node.
 	(cp_convert_parm_for_inlining): Remove.
 	* cp-lang.c (LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING):
 	Remove.
 	* cp-tree.h (ADDR_IS_INVISIREF): Remove.
 	* except.c (stabilize_throw_expr): Remove ADDR_IS_INVISIREF code.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.14646.2.40&r2=1.14646.2.41
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/calls.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.229.2.11&r2=1.229.2.12
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/explow.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.94.2.10&r2=1.94.2.11
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/expr.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.467.2.17&r2=1.467.2.18
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/integrate.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.197.2.8&r2=1.197.2.9
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/langhooks-def.h.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.34.2.8&r2=1.34.2.9
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/langhooks.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.31.2.7&r2=1.31.2.8
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/langhooks.h.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.42.2.9&r2=1.42.2.10
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/old-tree-inline.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.1.4.5&r2=1.1.4.6
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree-inline.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.26.2.13&r2=1.26.2.14
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree.h.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.342.2.31&r2=1.342.2.32
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.2849.2.22&r2=1.2849.2.23
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/call.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.320.2.13&r2=1.320.2.14
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/cp-lang.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.36.2.10&r2=1.36.2.11
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/cp-simplify.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.1.4.6&r2=1.1.4.7
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/cp-tree.h.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.719.2.19&r2=1.719.2.20
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/except.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.142.2.5&r2=1.142.2.6
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/tree.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.286.2.17&r2=1.286.2.18
 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* c++/8461
@ 2002-12-14  9:16 jason
  0 siblings, 0 replies; 4+ messages in thread
From: jason @ 2002-12-14  9:16 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR c++/8461; it has been noted by GNATS.

From: jason@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: c++/8461
Date: 14 Dec 2002 17:11:31 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Branch: 	tree-ssa-20020619-branch
 Changes by:	jason@gcc.gnu.org	2002-12-14 09:11:31
 
 Modified files:
 	gcc            : ChangeLog calls.c explow.c expr.c integrate.c 
 	                 langhooks-def.h langhooks.c langhooks.h 
 	                 old-tree-inline.c tree-inline.c tree.h 
 	gcc/cp         : ChangeLog call.c cp-lang.c cp-simplify.c 
 	                 cp-tree.h except.c tree.c 
 
 Log message:
 	* tree.h (CALL_EXPR_HAS_RETURN_SLOT_ADDR): New macro.
 	* calls.c (expand_call): Handle it.
 	* tree-inline.c (struct inline_data): Remove target_exprs field.
 	(optimize_inline_calls): Don't initialize it.
 	(expand_call_inline): Don't modify it.  Handle
 	CALL_EXPR_HAS_RETURN_SLOT_ADDR.
 	(declare_return_variable): Take return slot addr.
 	* langhooks.h (copy_res_decl_for_inlining): Change target_exprs parm
 	to return_slot_addr.
 	* langhooks-def.h, langhooks.c: Adjust.
 	* explow.c (maybe_set_unchanging): Don't set RTX_UNCHANGING_P for
 	a decl with no DECL_INITIAL.
 	
 	* expr.c (expand_expr): Don't discard the target of a call which
 	returns in memory.
 	
 	PR c++/8461, c++/8625
 	* integrate.c (copy_decl_for_inlining): Handle explicit invisible
 	references.
 	* tree-inline.c (initialize_inlined_parameters): Likewise.
 	
 	cp/
 	* semantics.c (simplify_aggr_init_exprs_r): Also prepend the
 	return slot for normal functions.  Set CALL_EXPR_HAS_RETURN_SLOT_ADDR.
 	* tree.c (build_cplus_new): If the type isn't TREE_ADDRESSABLE,
 	don't bother with an AGGR_INIT_EXPR.
 	(cp_copy_res_decl_for_inlining): If the type isn't TREE_ADDRESSABLE,
 	just generate a new decl normally.  Take return slot parm.
 	* cp-tree.h: Adjust prototype.
 	
 	PR c++/8461, c++/8625
 	* call.c (convert_for_arg_passing): Don't mess with error_mark_node.
 	(cp_convert_parm_for_inlining): Remove.
 	* cp-lang.c (LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING):
 	Remove.
 	* cp-tree.h (ADDR_IS_INVISIREF): Remove.
 	* except.c (stabilize_throw_expr): Remove ADDR_IS_INVISIREF code.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.14646.2.40&r2=1.14646.2.41
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/calls.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.229.2.11&r2=1.229.2.12
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/explow.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.94.2.10&r2=1.94.2.11
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/expr.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.467.2.17&r2=1.467.2.18
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/integrate.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.197.2.8&r2=1.197.2.9
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/langhooks-def.h.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.34.2.8&r2=1.34.2.9
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/langhooks.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.31.2.7&r2=1.31.2.8
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/langhooks.h.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.42.2.9&r2=1.42.2.10
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/old-tree-inline.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.1.4.5&r2=1.1.4.6
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree-inline.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.26.2.13&r2=1.26.2.14
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree.h.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.342.2.31&r2=1.342.2.32
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.2849.2.22&r2=1.2849.2.23
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/call.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.320.2.13&r2=1.320.2.14
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/cp-lang.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.36.2.10&r2=1.36.2.11
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/cp-simplify.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.1.4.6&r2=1.1.4.7
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/cp-tree.h.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.719.2.19&r2=1.719.2.20
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/except.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.142.2.5&r2=1.142.2.6
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/tree.c.diff?cvsroot=gcc&only_with_tag=tree-ssa-20020619-branch&r1=1.286.2.17&r2=1.286.2.18
 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* c++/8461
@ 2002-12-04 12:16 jason
  0 siblings, 0 replies; 4+ messages in thread
From: jason @ 2002-12-04 12:16 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR c++/8461; it has been noted by GNATS.

From: jason@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: c++/8461
Date: 4 Dec 2002 20:13:01 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Changes by:	jason@gcc.gnu.org	2002-12-04 12:13:01
 
 Modified files:
 	gcc            : ChangeLog integrate.c tree-inline.c tree.c 
 	gcc/cp         : ChangeLog call.c cp-lang.c cp-tree.h except.c 
 Added files:
 	gcc/testsuite/g++.dg/init: elide2.C 
 
 Log message:
 	PR c++/8461, c++/8625
 	* integrate.c (copy_decl_for_inlining): Handle explicit invisible
 	references.
 	* tree-inline.c (initialize_inlined_parameters): Likewise.
 	
 	2002-12-03  Jason Merrill  <jason@redhat.com>
 	
 	PR c++/8461, c++/8625
 	* call.c (convert_for_arg_passing): Don't mess with error_mark_node.
 	(cp_convert_parm_for_inlining): Remove.
 	* cp-lang.c (LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING):
 	Remove.
 	* cp-tree.h (ADDR_IS_INVISIREF): Remove.
 	* except.c (stabilize_throw_expr): Remove ADDR_IS_INVISIREF code.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=1.16053&r2=1.16054
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/integrate.c.diff?cvsroot=gcc&r1=1.204&r2=1.205
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree-inline.c.diff?cvsroot=gcc&r1=1.37&r2=1.38
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree.c.diff?cvsroot=gcc&r1=1.280&r2=1.281
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&r1=1.3068&r2=1.3069
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/call.c.diff?cvsroot=gcc&r1=1.340&r2=1.341
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/cp-lang.c.diff?cvsroot=gcc&r1=1.42&r2=1.43
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/cp-tree.h.diff?cvsroot=gcc&r1=1.772&r2=1.773
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/except.c.diff?cvsroot=gcc&r1=1.148&r2=1.149
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/init/elide2.C.diff?cvsroot=gcc&r1=NONE&r2=1.1
 


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2002-12-14 17:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-12-04 12:16 c++/8461 jason
  -- strict thread matches above, loose matches on Subject: below --
2002-12-14  9:16 c++/8461 jason
2002-12-14  9:16 c++/8461 jason
2002-12-04 12:16 c++/8461 jason

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).