Skip to content
Snippets Groups Projects
Commit e0495b6a authored by paolo's avatar paolo
Browse files

2002-04-08 Paolo Carlini <pcarlini@unitus.it>

	* parse.y (namespace_qualifier, maybe_identifier,
	begin_explicit_instantiation, end_explicit_instantiation,
	apparent_template_type, .finish_template_type,
	do_id, maybe_init, defarg_again, component_decl_1):
	Add ending ';', in accordance with POSIX.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@52026 138bc75d-0d04-0410-961f-82ee72b054a4
parent 6b129de1
No related branches found
No related tags found
No related merge requests found
2002-04-08 Paolo Carlini <pcarlini@unitus.it>
* parse.y (namespace_qualifier, maybe_identifier,
begin_explicit_instantiation, end_explicit_instantiation,
apparent_template_type, .finish_template_type,
do_id, maybe_init, defarg_again, component_decl_1):
Add ending ';', in accordance with POSIX.
2002-04-06 Mark Mitchell <mark@codesourcery.com> 2002-04-06 Mark Mitchell <mark@codesourcery.com>
PR c++/5571 PR c++/5571
......
...@@ -593,6 +593,7 @@ namespace_qualifier: ...@@ -593,6 +593,7 @@ namespace_qualifier:
$$ = lastiddecl; $$ = lastiddecl;
got_scope = $$; got_scope = $$;
} }
;
any_id: any_id:
unqualified_id unqualified_id
...@@ -642,6 +643,7 @@ maybe_identifier: ...@@ -642,6 +643,7 @@ maybe_identifier:
{ $$ = $1; } { $$ = $1; }
| /* empty */ | /* empty */
{ $$ = NULL_TREE; } { $$ = NULL_TREE; }
;
template_type_parm: template_type_parm:
aggr maybe_identifier aggr maybe_identifier
...@@ -1039,9 +1041,11 @@ explicit_instantiation: ...@@ -1039,9 +1041,11 @@ explicit_instantiation:
begin_explicit_instantiation: begin_explicit_instantiation:
{ begin_explicit_instantiation(); } { begin_explicit_instantiation(); }
;
end_explicit_instantiation: end_explicit_instantiation:
{ end_explicit_instantiation(); } { end_explicit_instantiation(); }
;
/* The TYPENAME expansions are to deal with use of a template class name as /* The TYPENAME expansions are to deal with use of a template class name as
a template within the class itself, where the template decl is hidden by a template within the class itself, where the template decl is hidden by
...@@ -1062,6 +1066,7 @@ apparent_template_type: ...@@ -1062,6 +1066,7 @@ apparent_template_type:
| identifier '<' template_arg_list_opt '>' | identifier '<' template_arg_list_opt '>'
.finish_template_type .finish_template_type
{ $$ = $5; } { $$ = $5; }
;
self_template_type: self_template_type:
SELFNAME '<' template_arg_list_opt template_close_bracket SELFNAME '<' template_arg_list_opt template_close_bracket
...@@ -1077,6 +1082,7 @@ self_template_type: ...@@ -1077,6 +1082,7 @@ self_template_type:
$$ = finish_template_type ($<ttype>-3, $<ttype>-1, $$ = finish_template_type ($<ttype>-3, $<ttype>-1,
yychar == SCOPE); yychar == SCOPE);
} }
;
template_close_bracket: template_close_bracket:
'>' '>'
...@@ -1496,6 +1502,7 @@ do_id: ...@@ -1496,6 +1502,7 @@ do_id:
else else
$$ = $<ttype>-1; $$ = $<ttype>-1;
} }
;
template_id: template_id:
PFUNCNAME '<' do_id template_arg_list_opt template_close_bracket PFUNCNAME '<' do_id template_arg_list_opt template_close_bracket
...@@ -2182,6 +2189,7 @@ maybe_init: ...@@ -2182,6 +2189,7 @@ maybe_init:
{ $$ = NULL_TREE; } { $$ = NULL_TREE; }
| '=' init | '=' init
{ $$ = $2; } { $$ = $2; }
;
/* If we are processing a template, we don't want to expand this /* If we are processing a template, we don't want to expand this
initializer yet. */ initializer yet. */
...@@ -2246,6 +2254,7 @@ defarg_again: ...@@ -2246,6 +2254,7 @@ defarg_again:
{ replace_defarg ($1, $2); } { replace_defarg ($1, $2); }
| DEFARG_MARKER error END_OF_SAVED_INPUT | DEFARG_MARKER error END_OF_SAVED_INPUT
{ replace_defarg ($1, error_mark_node); } { replace_defarg ($1, error_mark_node); }
;
pending_defargs: pending_defargs:
/* empty */ %prec EMPTY /* empty */ %prec EMPTY
...@@ -2677,6 +2686,7 @@ component_decl_1: ...@@ -2677,6 +2686,7 @@ component_decl_1:
{ $$ = grokfield ($$, NULL_TREE, $4, $2, $3); } { $$ = grokfield ($$, NULL_TREE, $4, $2, $3); }
| using_decl | using_decl
{ $$ = do_class_using_decl ($1); } { $$ = do_class_using_decl ($1); }
;
/* The case of exactly one component is handled directly by component_decl. */ /* The case of exactly one component is handled directly by component_decl. */
/* ??? Huh? ^^^ */ /* ??? Huh? ^^^ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment