public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* c++/8006
@ 2002-10-03 22:06 mmitchel
  0 siblings, 0 replies; 2+ messages in thread
From: mmitchel @ 2002-10-03 22:06 UTC (permalink / raw)
  To: mmitchel; +Cc: gcc-prs

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

From: mmitchel@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: c++/8006
Date: 4 Oct 2002 04:59:39 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Changes by:	mmitchel@gcc.gnu.org	2002-10-03 21:59:39
 
 Modified files:
 	gcc            : ChangeLog 
 	gcc/doc        : invoke.texi 
 	gcc/testsuite  : ChangeLog 
 	gcc/cp         : ChangeLog mangle.c 
 Added files:
 	gcc/testsuite/g++.dg/abi: mangle9.C mangle10.C mangle11.C 
 	                          mangle12.C 
 
 Log message:
 	* doc/invoke.texi (-Wabi): Document mangling bug.
 	
 	PR c++/8006
 	* mangle.c (CLASSTYPE_TEMPLATE_ID_P): Handle instances of template
 	template parameters.
 	(globals): Add entity and need_abi_warning.
 	(decl_is_template_id): Use TYPE_TEMPLATE_INFO, not
 	CLASSTYPE_TEMPLATE_INFO.
 	(is_std_substitution): Use CLASSTYPE_TI_TEMPLATE, not
 	TYPE_TI_TEMPLATE.
 	(write_prefix): Handle typename types correctly.
 	(write_template_prefix): Handle template template parameters
 	correctly.
 	(start_mangling): Add entity parameter.
 	(finish_mangling): Warn about names whose mangling will change.
 	(mangle_decl_string): Adjust.
 	(mangle_type_string): Likewise.
 	(mangle_special_for_type): Likewise.
 	(mangle_ctor_vtbl_for_type): Likewise.
 	(mangle_thunk): Likewise.
 	(mangle_guard_variable): Likewise.
 	(mangle_ref_init_variable): Likewise.
 	
 	PR c++/8006
 	* g++.dg/abi/mangle9.C: New test.
 	* g++.dg/abi/mangle10.C: New test.
 	* g++.dg/abi/mangle11.C: New test.
 	* g++.dg/abi/mangle12.C: New test.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=1.15619&r2=1.15620
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/doc/invoke.texi.diff?cvsroot=gcc&r1=1.190&r2=1.191
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.2117&r2=1.2118
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/abi/mangle9.C.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/abi/mangle10.C.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/abi/mangle11.C.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/abi/mangle12.C.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&r1=1.2980&r2=1.2981
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/mangle.c.diff?cvsroot=gcc&r1=1.59&r2=1.60
 


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

* c++/8006
@ 2002-10-03 22:06 mmitchel
  0 siblings, 0 replies; 2+ messages in thread
From: mmitchel @ 2002-10-03 22:06 UTC (permalink / raw)
  To: mmitchel; +Cc: gcc-prs

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

From: mmitchel@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: c++/8006
Date: 4 Oct 2002 04:59:39 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Changes by:	mmitchel@gcc.gnu.org	2002-10-03 21:59:39
 
 Modified files:
 	gcc            : ChangeLog 
 	gcc/doc        : invoke.texi 
 	gcc/testsuite  : ChangeLog 
 	gcc/cp         : ChangeLog mangle.c 
 Added files:
 	gcc/testsuite/g++.dg/abi: mangle9.C mangle10.C mangle11.C 
 	                          mangle12.C 
 
 Log message:
 	* doc/invoke.texi (-Wabi): Document mangling bug.
 	
 	PR c++/8006
 	* mangle.c (CLASSTYPE_TEMPLATE_ID_P): Handle instances of template
 	template parameters.
 	(globals): Add entity and need_abi_warning.
 	(decl_is_template_id): Use TYPE_TEMPLATE_INFO, not
 	CLASSTYPE_TEMPLATE_INFO.
 	(is_std_substitution): Use CLASSTYPE_TI_TEMPLATE, not
 	TYPE_TI_TEMPLATE.
 	(write_prefix): Handle typename types correctly.
 	(write_template_prefix): Handle template template parameters
 	correctly.
 	(start_mangling): Add entity parameter.
 	(finish_mangling): Warn about names whose mangling will change.
 	(mangle_decl_string): Adjust.
 	(mangle_type_string): Likewise.
 	(mangle_special_for_type): Likewise.
 	(mangle_ctor_vtbl_for_type): Likewise.
 	(mangle_thunk): Likewise.
 	(mangle_guard_variable): Likewise.
 	(mangle_ref_init_variable): Likewise.
 	
 	PR c++/8006
 	* g++.dg/abi/mangle9.C: New test.
 	* g++.dg/abi/mangle10.C: New test.
 	* g++.dg/abi/mangle11.C: New test.
 	* g++.dg/abi/mangle12.C: New test.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=1.15619&r2=1.15620
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/doc/invoke.texi.diff?cvsroot=gcc&r1=1.190&r2=1.191
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.2117&r2=1.2118
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/abi/mangle9.C.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/abi/mangle10.C.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/abi/mangle11.C.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/abi/mangle12.C.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&r1=1.2980&r2=1.2981
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/mangle.c.diff?cvsroot=gcc&r1=1.59&r2=1.60
 


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

end of thread, other threads:[~2002-10-04  5:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-10-03 22:06 c++/8006 mmitchel
2002-10-03 22:06 c++/8006 mmitchel

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).