public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* c++/9285
@ 2003-01-22 17:46 mmitchel
  0 siblings, 0 replies; 2+ messages in thread
From: mmitchel @ 2003-01-22 17:46 UTC (permalink / raw)
  To: mmitchel; +Cc: gcc-prs

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

From: mmitchel@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: c++/9285
Date: 22 Jan 2003 17:39:16 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Changes by:	mmitchel@gcc.gnu.org	2003-01-22 17:39:15
 
 Modified files:
 	gcc/testsuite  : ChangeLog 
 	gcc/cp         : ChangeLog class.c cp-tree.h parser.c pt.c 
 Added files:
 	gcc/testsuite/g++.dg/parse: expr2.C lookup2.C 
 
 Log message:
 	PR c++/9388
 	* class.c (currently_open_derived_class): Use dependent_type_p.
 	* cp-tree.h (dependent_type_p): New function.
 	(dependent_template_arg_p): Likewise.
 	(dependent_template_p): Likewise.
 	(type_dependent_expression_p): Likewise.
 	* parser.c (cp_parser_dependent_type_p): Remove.
 	(cp_parser_value_dependent_type_p): Likewise.
 	(cp_parser_type_dependent_expression_p): Likewise.
 	(cp_parser_dependent_template_arg_p): Likewise.
 	(cp_parser_dependent_template_id_p): Likewise.
 	(cp_parser_dependent_template_p): Likewise.
 	(cp_parser_diagnose_invalid_type_name): Replace
 	cp_parser_dependent_type_p with dependent_type_p, etc.
 	(cp_parser_primary_expresion): Likewise.
 	(cp_parser_nested_name_specifier_opt): Likewise.
 	(cp_parser_postfix_expression): Likewise.
 	(cp_parser_unary_expression): Likewise.
 	(cp_parser_template_name): Likewise.
 	(cp_parser_class_name): Likewise.
 	(cp_parser_lookup_name): Likewise.
 	* pt.c (dependent_type_p): New function.
 	(value_dependent_expression_p): Likewise.
 	(type_dependent_expression_p): Likewise.
 	(dependent_template_arg_p): Likewise.
 	(dependent_template_id_p): Likewise.
 	(dependent_template_p): Likewise.
 	
 	PR c++/9285
 	PR c++/9294
 	* parser.c (cp_parser_simple_declaration):
 	
 	PR c++/9285
 	PR c++/9294
 	* g++.dg/parse/expr2.C: New test.
 	
 	PR c++/9388
 	* g++.dg/parse/lookup2.C: Likewise.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.2358&r2=1.2359
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/parse/expr2.C.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/parse/lookup2.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.3168&r2=1.3169
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/class.c.diff?cvsroot=gcc&r1=1.513&r2=1.514
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/cp-tree.h.diff?cvsroot=gcc&r1=1.803&r2=1.804
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/parser.c.diff?cvsroot=gcc&r1=1.33&r2=1.34
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/pt.c.diff?cvsroot=gcc&r1=1.650&r2=1.651
 


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

* c++/9285
@ 2003-01-22 17:46 mmitchel
  0 siblings, 0 replies; 2+ messages in thread
From: mmitchel @ 2003-01-22 17:46 UTC (permalink / raw)
  To: mmitchel; +Cc: gcc-prs

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

From: mmitchel@gcc.gnu.org
To: gcc-gnats@gcc.gnu.org
Cc:  
Subject: c++/9285
Date: 22 Jan 2003 17:39:16 -0000

 CVSROOT:	/cvs/gcc
 Module name:	gcc
 Changes by:	mmitchel@gcc.gnu.org	2003-01-22 17:39:15
 
 Modified files:
 	gcc/testsuite  : ChangeLog 
 	gcc/cp         : ChangeLog class.c cp-tree.h parser.c pt.c 
 Added files:
 	gcc/testsuite/g++.dg/parse: expr2.C lookup2.C 
 
 Log message:
 	PR c++/9388
 	* class.c (currently_open_derived_class): Use dependent_type_p.
 	* cp-tree.h (dependent_type_p): New function.
 	(dependent_template_arg_p): Likewise.
 	(dependent_template_p): Likewise.
 	(type_dependent_expression_p): Likewise.
 	* parser.c (cp_parser_dependent_type_p): Remove.
 	(cp_parser_value_dependent_type_p): Likewise.
 	(cp_parser_type_dependent_expression_p): Likewise.
 	(cp_parser_dependent_template_arg_p): Likewise.
 	(cp_parser_dependent_template_id_p): Likewise.
 	(cp_parser_dependent_template_p): Likewise.
 	(cp_parser_diagnose_invalid_type_name): Replace
 	cp_parser_dependent_type_p with dependent_type_p, etc.
 	(cp_parser_primary_expresion): Likewise.
 	(cp_parser_nested_name_specifier_opt): Likewise.
 	(cp_parser_postfix_expression): Likewise.
 	(cp_parser_unary_expression): Likewise.
 	(cp_parser_template_name): Likewise.
 	(cp_parser_class_name): Likewise.
 	(cp_parser_lookup_name): Likewise.
 	* pt.c (dependent_type_p): New function.
 	(value_dependent_expression_p): Likewise.
 	(type_dependent_expression_p): Likewise.
 	(dependent_template_arg_p): Likewise.
 	(dependent_template_id_p): Likewise.
 	(dependent_template_p): Likewise.
 	
 	PR c++/9285
 	PR c++/9294
 	* parser.c (cp_parser_simple_declaration):
 	
 	PR c++/9285
 	PR c++/9294
 	* g++.dg/parse/expr2.C: New test.
 	
 	PR c++/9388
 	* g++.dg/parse/lookup2.C: Likewise.
 
 Patches:
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.2358&r2=1.2359
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/parse/expr2.C.diff?cvsroot=gcc&r1=NONE&r2=1.1
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/parse/lookup2.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.3168&r2=1.3169
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/class.c.diff?cvsroot=gcc&r1=1.513&r2=1.514
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/cp-tree.h.diff?cvsroot=gcc&r1=1.803&r2=1.804
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/parser.c.diff?cvsroot=gcc&r1=1.33&r2=1.34
 http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/pt.c.diff?cvsroot=gcc&r1=1.650&r2=1.651
 


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

end of thread, other threads:[~2003-01-22 17:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-01-22 17:46 c++/9285 mmitchel
2003-01-22 17:46 c++/9285 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).