mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-19 09:13:04 +00:00
Regenerate.
This commit is contained in:
@@ -345,7 +345,7 @@ union yyalloc
|
|||||||
# define YYCOPY(To, From, Count) \
|
# define YYCOPY(To, From, Count) \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
register YYSIZE_T yyi; \
|
YYSIZE_T yyi; \
|
||||||
for (yyi = 0; yyi < (Count); yyi++) \
|
for (yyi = 0; yyi < (Count); yyi++) \
|
||||||
(To)[yyi] = (From)[yyi]; \
|
(To)[yyi] = (From)[yyi]; \
|
||||||
} \
|
} \
|
||||||
@@ -901,7 +901,7 @@ yystrlen (yystr)
|
|||||||
const char *yystr;
|
const char *yystr;
|
||||||
# endif
|
# endif
|
||||||
{
|
{
|
||||||
register const char *yys = yystr;
|
const char *yys = yystr;
|
||||||
|
|
||||||
while (*yys++ != '\0')
|
while (*yys++ != '\0')
|
||||||
continue;
|
continue;
|
||||||
@@ -926,8 +926,8 @@ yystpcpy (yydest, yysrc)
|
|||||||
const char *yysrc;
|
const char *yysrc;
|
||||||
# endif
|
# endif
|
||||||
{
|
{
|
||||||
register char *yyd = yydest;
|
char *yyd = yydest;
|
||||||
register const char *yys = yysrc;
|
const char *yys = yysrc;
|
||||||
|
|
||||||
while ((*yyd++ = *yys++) != '\0')
|
while ((*yyd++ = *yys++) != '\0')
|
||||||
continue;
|
continue;
|
||||||
@@ -1070,8 +1070,8 @@ int yynerrs;
|
|||||||
/* Location data for the look-ahead symbol. */
|
/* Location data for the look-ahead symbol. */
|
||||||
YYLTYPE yylloc;
|
YYLTYPE yylloc;
|
||||||
|
|
||||||
register int yystate;
|
int yystate;
|
||||||
register int yyn;
|
int yyn;
|
||||||
int yyresult;
|
int yyresult;
|
||||||
/* Number of tokens to shift before error messages enabled. */
|
/* Number of tokens to shift before error messages enabled. */
|
||||||
int yyerrstatus;
|
int yyerrstatus;
|
||||||
@@ -1089,12 +1089,12 @@ YYLTYPE yylloc;
|
|||||||
/* The state stack. */
|
/* The state stack. */
|
||||||
short int yyssa[YYINITDEPTH];
|
short int yyssa[YYINITDEPTH];
|
||||||
short int *yyss = yyssa;
|
short int *yyss = yyssa;
|
||||||
register short int *yyssp;
|
short int *yyssp;
|
||||||
|
|
||||||
/* The semantic value stack. */
|
/* The semantic value stack. */
|
||||||
YYSTYPE yyvsa[YYINITDEPTH];
|
YYSTYPE yyvsa[YYINITDEPTH];
|
||||||
YYSTYPE *yyvs = yyvsa;
|
YYSTYPE *yyvs = yyvsa;
|
||||||
register YYSTYPE *yyvsp;
|
YYSTYPE *yyvsp;
|
||||||
|
|
||||||
/* The location stack. */
|
/* The location stack. */
|
||||||
YYLTYPE yylsa[YYINITDEPTH];
|
YYLTYPE yylsa[YYINITDEPTH];
|
||||||
|
|||||||
Reference in New Issue
Block a user