mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 08:24:05 +08:00
CVS:
Modified Files: ChangeLog c-exp.y * c-exp.y : fix grammar to parse ellipsis (...) (fix pr4218)
This commit is contained in:
@ -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)
|
Mon Dec 27 18:42:14 1993 Kung Hsu (kung@cirdan.cygnus.com)
|
||||||
|
|
||||||
* stabsread.c (read_type): fix problem when reading static member
|
* stabsread.c (read_type): fix problem when reading static member
|
||||||
|
@ -831,6 +831,7 @@ typebase /* Implements (approximately): (type-qualifier)* type-specifier */
|
|||||||
be too. */
|
be too. */
|
||||||
| CONST_KEYWORD typebase { $$ = $2; }
|
| CONST_KEYWORD typebase { $$ = $2; }
|
||||||
| VOLATILE_KEYWORD typebase { $$ = $2; }
|
| VOLATILE_KEYWORD typebase { $$ = $2; }
|
||||||
|
| '.' '.' '.' { $$ = NULL; }
|
||||||
;
|
;
|
||||||
|
|
||||||
typename: TYPENAME
|
typename: TYPENAME
|
||||||
|
Reference in New Issue
Block a user