mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-07 07:58:54 +08:00
2007-10-03 Pierre Muller <muller@ics.u-strasbg.fr>
* objc-exp.y: ARI fix: remove 4 PARAMS.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2007-10-03 Pierre Muller <muller@ics.u-strasbg.fr>
|
||||||
|
|
||||||
|
* objc-exp.y: ARI fix: remove 4 PARAMS.
|
||||||
|
|
||||||
|
|
||||||
2007-10-03 Daniel Jacobowitz <dan@codesourcery.com>
|
2007-10-03 Daniel Jacobowitz <dan@codesourcery.com>
|
||||||
|
|
||||||
* NEWS: Use uniform spacing. Correct version number for GDB 6.7
|
* NEWS: Use uniform spacing. Correct version number for GDB 6.7
|
||||||
|
@ -108,13 +108,13 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
int
|
int
|
||||||
yyparse PARAMS ((void));
|
yyparse (void);
|
||||||
|
|
||||||
static int
|
static int
|
||||||
yylex PARAMS ((void));
|
yylex (void);
|
||||||
|
|
||||||
void
|
void
|
||||||
yyerror PARAMS ((char *));
|
yyerror (char *);
|
||||||
|
|
||||||
%}
|
%}
|
||||||
|
|
||||||
@ -151,7 +151,7 @@ yyerror PARAMS ((char *));
|
|||||||
%{
|
%{
|
||||||
/* YYSTYPE gets defined by %union. */
|
/* YYSTYPE gets defined by %union. */
|
||||||
static int
|
static int
|
||||||
parse_number PARAMS ((char *, int, int, YYSTYPE *));
|
parse_number (char *, int, int, YYSTYPE *);
|
||||||
%}
|
%}
|
||||||
|
|
||||||
%type <voidval> exp exp1 type_exp start variable qualified_name lcurly
|
%type <voidval> exp exp1 type_exp start variable qualified_name lcurly
|
||||||
|
Reference in New Issue
Block a user