Modified Files:
	ChangeLog c-exp.y

        * c-exp.y : fix grammar to parse ellipsis (...)
	(fix pr4218)
This commit is contained in:
Kung Hsu 1993-12-28 20:11:25 +00:00
parent d1b44e837e
commit bbc2cef268
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Tue Dec 28 12:06:57 1993 Kung Hsu (kung@cirdan.cygnus.com)
* c-exp.y : fix grammar to parse ellipsis (...)
Mon Dec 27 18:42:14 1993 Kung Hsu (kung@cirdan.cygnus.com)
* stabsread.c (read_type): fix problem when reading static member

View File

@ -831,6 +831,7 @@ typebase /* Implements (approximately): (type-qualifier)* type-specifier */
be too. */
| CONST_KEYWORD typebase { $$ = $2; }
| VOLATILE_KEYWORD typebase { $$ = $2; }
| '.' '.' '.' { $$ = NULL; }
;
typename: TYPENAME