mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-15 23:33:03 +00:00
Regenerate.
This commit is contained in:
@@ -289,12 +289,23 @@ typedef struct YYLTYPE
|
|||||||
/* Line 219 of yacc.c. */
|
/* Line 219 of yacc.c. */
|
||||||
#line 291 "parse-gram.c"
|
#line 291 "parse-gram.c"
|
||||||
|
|
||||||
|
/* Define YYMODERN_C if this compiler supports C89 or better. Some
|
||||||
|
modern compilers (e.g., IBM xlc 7.0) don't define __STDC__ for
|
||||||
|
pedantic reasons, but they define __STDC_VERSION__ so check that
|
||||||
|
as well. Consider a C++ compiler to be modern if it defines
|
||||||
|
__cplusplus. */
|
||||||
|
#if defined (__STDC__) || defined (__STDC_VERSION__) || defined (__cplusplus)
|
||||||
|
# define YYMODERN_C 1
|
||||||
|
#else
|
||||||
|
# define YYMODERN_C 0
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef YYSIZE_T
|
#ifndef YYSIZE_T
|
||||||
# if defined (__SIZE_TYPE__)
|
# if defined (__SIZE_TYPE__)
|
||||||
# define YYSIZE_T __SIZE_TYPE__
|
# define YYSIZE_T __SIZE_TYPE__
|
||||||
# elif defined (size_t)
|
# elif defined (size_t)
|
||||||
# define YYSIZE_T size_t
|
# define YYSIZE_T size_t
|
||||||
# elif ! defined (YYSIZE_T) && (defined (__STDC__) || defined (__cplusplus))
|
# elif ! defined (YYSIZE_T) && YYMODERN_C
|
||||||
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
|
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
|
||||||
# define YYSIZE_T size_t
|
# define YYSIZE_T size_t
|
||||||
# else
|
# else
|
||||||
@@ -336,8 +347,7 @@ typedef struct YYLTYPE
|
|||||||
# define alloca _alloca
|
# define alloca _alloca
|
||||||
# else
|
# else
|
||||||
# define YYSTACK_ALLOC alloca
|
# define YYSTACK_ALLOC alloca
|
||||||
# if (! defined (_ALLOCA_H) && ! defined (_STDLIB_H) \
|
# if ! defined (_ALLOCA_H) && ! defined (_STDLIB_H) && YYMODERN_C
|
||||||
&& (defined (__STDC__) || defined (__cplusplus)))
|
|
||||||
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
|
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
|
||||||
# ifndef _STDLIB_H
|
# ifndef _STDLIB_H
|
||||||
# define _STDLIB_H 1
|
# define _STDLIB_H 1
|
||||||
@@ -368,15 +378,13 @@ extern "C" {
|
|||||||
# endif
|
# endif
|
||||||
# ifndef YYMALLOC
|
# ifndef YYMALLOC
|
||||||
# define YYMALLOC malloc
|
# define YYMALLOC malloc
|
||||||
# if (! defined (malloc) && ! defined (_STDLIB_H) \
|
# if ! defined (malloc) && ! defined (_STDLIB_H) && YYMODERN_C
|
||||||
&& (defined (__STDC__) || defined (__cplusplus)))
|
|
||||||
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
|
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
|
||||||
# endif
|
# endif
|
||||||
# endif
|
# endif
|
||||||
# ifndef YYFREE
|
# ifndef YYFREE
|
||||||
# define YYFREE free
|
# define YYFREE free
|
||||||
# if (! defined (free) && ! defined (_STDLIB_H) \
|
# if ! defined (free) && ! defined (_STDLIB_H) && YYMODERN_C
|
||||||
&& (defined (__STDC__) || defined (__cplusplus)))
|
|
||||||
void free (void *); /* INFRINGES ON USER NAME SPACE */
|
void free (void *); /* INFRINGES ON USER NAME SPACE */
|
||||||
# endif
|
# endif
|
||||||
# endif
|
# endif
|
||||||
@@ -445,7 +453,7 @@ union yyalloc
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined (__STDC__) || defined (__cplusplus)
|
#if YYMODERN_C
|
||||||
typedef signed char yysigned_char;
|
typedef signed char yysigned_char;
|
||||||
#else
|
#else
|
||||||
typedef short int yysigned_char;
|
typedef short int yysigned_char;
|
||||||
@@ -870,7 +878,7 @@ do { \
|
|||||||
| TOP (included). |
|
| TOP (included). |
|
||||||
`------------------------------------------------------------------*/
|
`------------------------------------------------------------------*/
|
||||||
|
|
||||||
#if defined (__STDC__) || defined (__cplusplus)
|
#if defined (__STDC__) || defined (__STDC_VERSION__) || defined (__cplusplus)
|
||||||
static void
|
static void
|
||||||
yy_stack_print (short int *bottom, short int *top)
|
yy_stack_print (short int *bottom, short int *top)
|
||||||
#else
|
#else
|
||||||
@@ -897,7 +905,7 @@ do { \
|
|||||||
| Report that the YYRULE is going to be reduced. |
|
| Report that the YYRULE is going to be reduced. |
|
||||||
`------------------------------------------------*/
|
`------------------------------------------------*/
|
||||||
|
|
||||||
#if defined (__STDC__) || defined (__cplusplus)
|
#if defined (__STDC__) || defined (__STDC_VERSION__) || defined (__cplusplus)
|
||||||
static void
|
static void
|
||||||
yy_reduce_print (int yyrule)
|
yy_reduce_print (int yyrule)
|
||||||
#else
|
#else
|
||||||
@@ -959,7 +967,7 @@ int yydebug;
|
|||||||
# else
|
# else
|
||||||
/* Return the length of YYSTR. */
|
/* Return the length of YYSTR. */
|
||||||
static YYSIZE_T
|
static YYSIZE_T
|
||||||
# if defined (__STDC__) || defined (__cplusplus)
|
# if YYMODERN_C
|
||||||
yystrlen (const char *yystr)
|
yystrlen (const char *yystr)
|
||||||
# else
|
# else
|
||||||
yystrlen (yystr)
|
yystrlen (yystr)
|
||||||
@@ -983,7 +991,7 @@ yystrlen (yystr)
|
|||||||
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
|
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
|
||||||
YYDEST. */
|
YYDEST. */
|
||||||
static char *
|
static char *
|
||||||
# if defined (__STDC__) || defined (__cplusplus)
|
# if YYMODERN_C
|
||||||
yystpcpy (char *yydest, const char *yysrc)
|
yystpcpy (char *yydest, const char *yysrc)
|
||||||
# else
|
# else
|
||||||
yystpcpy (yydest, yysrc)
|
yystpcpy (yydest, yysrc)
|
||||||
@@ -1165,7 +1173,7 @@ yysyntax_error (char *yyresult, int yystate, int yychar)
|
|||||||
| Print this symbol on YYOUTPUT. |
|
| Print this symbol on YYOUTPUT. |
|
||||||
`--------------------------------*/
|
`--------------------------------*/
|
||||||
|
|
||||||
#if defined (__STDC__) || defined (__cplusplus)
|
#if defined (__STDC__) || defined (__STDC_VERSION__) || defined (__cplusplus)
|
||||||
static void
|
static void
|
||||||
yysymprint (FILE *yyoutput, int yytype, YYSTYPE *yyvaluep, YYLTYPE *yylocationp)
|
yysymprint (FILE *yyoutput, int yytype, YYSTYPE *yyvaluep, YYLTYPE *yylocationp)
|
||||||
#else
|
#else
|
||||||
@@ -1197,92 +1205,92 @@ yysymprint (yyoutput, yytype, yyvaluep, yylocationp)
|
|||||||
case 3: /* "\"string\"" */
|
case 3: /* "\"string\"" */
|
||||||
#line 169 "parse-gram.y"
|
#line 169 "parse-gram.y"
|
||||||
{ fprintf (stderr, "\"%s\"", (yyvaluep->chars)); };
|
{ fprintf (stderr, "\"%s\"", (yyvaluep->chars)); };
|
||||||
#line 1201 "parse-gram.c"
|
#line 1209 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 4: /* "\"integer\"" */
|
case 4: /* "\"integer\"" */
|
||||||
#line 182 "parse-gram.y"
|
#line 182 "parse-gram.y"
|
||||||
{ fprintf (stderr, "%d", (yyvaluep->integer)); };
|
{ fprintf (stderr, "%d", (yyvaluep->integer)); };
|
||||||
#line 1206 "parse-gram.c"
|
#line 1214 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 8: /* "\"%destructor {...}\"" */
|
case 8: /* "\"%destructor {...}\"" */
|
||||||
#line 171 "parse-gram.y"
|
#line 171 "parse-gram.y"
|
||||||
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
||||||
#line 1211 "parse-gram.c"
|
#line 1219 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 9: /* "\"%printer {...}\"" */
|
case 9: /* "\"%printer {...}\"" */
|
||||||
#line 175 "parse-gram.y"
|
#line 175 "parse-gram.y"
|
||||||
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
||||||
#line 1216 "parse-gram.c"
|
#line 1224 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 10: /* "\"%union {...}\"" */
|
case 10: /* "\"%union {...}\"" */
|
||||||
#line 176 "parse-gram.y"
|
#line 176 "parse-gram.y"
|
||||||
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
||||||
#line 1221 "parse-gram.c"
|
#line 1229 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 26: /* "\"%initial-action {...}\"" */
|
case 26: /* "\"%initial-action {...}\"" */
|
||||||
#line 172 "parse-gram.y"
|
#line 172 "parse-gram.y"
|
||||||
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
||||||
#line 1226 "parse-gram.c"
|
#line 1234 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 27: /* "\"%lex-param {...}\"" */
|
case 27: /* "\"%lex-param {...}\"" */
|
||||||
#line 173 "parse-gram.y"
|
#line 173 "parse-gram.y"
|
||||||
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
||||||
#line 1231 "parse-gram.c"
|
#line 1239 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 34: /* "\"%parse-param {...}\"" */
|
case 34: /* "\"%parse-param {...}\"" */
|
||||||
#line 174 "parse-gram.y"
|
#line 174 "parse-gram.y"
|
||||||
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
||||||
#line 1236 "parse-gram.c"
|
#line 1244 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 42: /* "\"type\"" */
|
case 42: /* "\"type\"" */
|
||||||
#line 180 "parse-gram.y"
|
#line 180 "parse-gram.y"
|
||||||
{ fprintf (stderr, "<%s>", (yyvaluep->uniqstr)); };
|
{ fprintf (stderr, "<%s>", (yyvaluep->uniqstr)); };
|
||||||
#line 1241 "parse-gram.c"
|
#line 1249 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 46: /* "\"identifier\"" */
|
case 46: /* "\"identifier\"" */
|
||||||
#line 184 "parse-gram.y"
|
#line 184 "parse-gram.y"
|
||||||
{ fprintf (stderr, "%s", (yyvaluep->symbol)->tag); };
|
{ fprintf (stderr, "%s", (yyvaluep->symbol)->tag); };
|
||||||
#line 1246 "parse-gram.c"
|
#line 1254 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 47: /* "\"identifier:\"" */
|
case 47: /* "\"identifier:\"" */
|
||||||
#line 186 "parse-gram.y"
|
#line 186 "parse-gram.y"
|
||||||
{ fprintf (stderr, "%s:", (yyvaluep->symbol)->tag); };
|
{ fprintf (stderr, "%s:", (yyvaluep->symbol)->tag); };
|
||||||
#line 1251 "parse-gram.c"
|
#line 1259 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 49: /* "\"%{...%}\"" */
|
case 49: /* "\"%{...%}\"" */
|
||||||
#line 178 "parse-gram.y"
|
#line 178 "parse-gram.y"
|
||||||
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
||||||
#line 1256 "parse-gram.c"
|
#line 1264 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 50: /* "\"epilogue\"" */
|
case 50: /* "\"epilogue\"" */
|
||||||
#line 178 "parse-gram.y"
|
#line 178 "parse-gram.y"
|
||||||
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
||||||
#line 1261 "parse-gram.c"
|
#line 1269 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 51: /* "\"{...}\"" */
|
case 51: /* "\"{...}\"" */
|
||||||
#line 177 "parse-gram.y"
|
#line 177 "parse-gram.y"
|
||||||
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
||||||
#line 1266 "parse-gram.c"
|
#line 1274 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 72: /* "symbol" */
|
case 72: /* "symbol" */
|
||||||
#line 184 "parse-gram.y"
|
#line 184 "parse-gram.y"
|
||||||
{ fprintf (stderr, "%s", (yyvaluep->symbol)->tag); };
|
{ fprintf (stderr, "%s", (yyvaluep->symbol)->tag); };
|
||||||
#line 1271 "parse-gram.c"
|
#line 1279 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 73: /* "action" */
|
case 73: /* "action" */
|
||||||
#line 177 "parse-gram.y"
|
#line 177 "parse-gram.y"
|
||||||
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
{ fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
|
||||||
#line 1276 "parse-gram.c"
|
#line 1284 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 74: /* "string_as_id" */
|
case 74: /* "string_as_id" */
|
||||||
#line 184 "parse-gram.y"
|
#line 184 "parse-gram.y"
|
||||||
{ fprintf (stderr, "%s", (yyvaluep->symbol)->tag); };
|
{ fprintf (stderr, "%s", (yyvaluep->symbol)->tag); };
|
||||||
#line 1281 "parse-gram.c"
|
#line 1289 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
case 75: /* "string_content" */
|
case 75: /* "string_content" */
|
||||||
#line 169 "parse-gram.y"
|
#line 169 "parse-gram.y"
|
||||||
{ fprintf (stderr, "\"%s\"", (yyvaluep->chars)); };
|
{ fprintf (stderr, "\"%s\"", (yyvaluep->chars)); };
|
||||||
#line 1286 "parse-gram.c"
|
#line 1294 "parse-gram.c"
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
@@ -1295,7 +1303,7 @@ yysymprint (yyoutput, yytype, yyvaluep, yylocationp)
|
|||||||
| Release the memory associated to this symbol. |
|
| Release the memory associated to this symbol. |
|
||||||
`-----------------------------------------------*/
|
`-----------------------------------------------*/
|
||||||
|
|
||||||
#if defined (__STDC__) || defined (__cplusplus)
|
#if defined (__STDC__) || defined (__STDC_VERSION__) || defined (__cplusplus)
|
||||||
static void
|
static void
|
||||||
yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, YYLTYPE *yylocationp)
|
yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, YYLTYPE *yylocationp)
|
||||||
#else
|
#else
|
||||||
@@ -1326,7 +1334,7 @@ yydestruct (yymsg, yytype, yyvaluep, yylocationp)
|
|||||||
/* Prevent warnings from -Wmissing-prototypes. */
|
/* Prevent warnings from -Wmissing-prototypes. */
|
||||||
|
|
||||||
#ifdef YYPARSE_PARAM
|
#ifdef YYPARSE_PARAM
|
||||||
# if defined (__STDC__) || defined (__cplusplus)
|
# if YYMODERN_C
|
||||||
int yyparse (void *YYPARSE_PARAM);
|
int yyparse (void *YYPARSE_PARAM);
|
||||||
# else
|
# else
|
||||||
int yyparse ();
|
int yyparse ();
|
||||||
@@ -1349,14 +1357,14 @@ int yyparse ();
|
|||||||
`----------*/
|
`----------*/
|
||||||
|
|
||||||
#ifdef YYPARSE_PARAM
|
#ifdef YYPARSE_PARAM
|
||||||
# if defined (__STDC__) || defined (__cplusplus)
|
# if YYMODERN_C
|
||||||
int yyparse (void *YYPARSE_PARAM)
|
int yyparse (void *YYPARSE_PARAM)
|
||||||
# else
|
# else
|
||||||
int yyparse (YYPARSE_PARAM)
|
int yyparse (YYPARSE_PARAM)
|
||||||
void *YYPARSE_PARAM;
|
void *YYPARSE_PARAM;
|
||||||
# endif
|
# endif
|
||||||
#else /* ! YYPARSE_PARAM */
|
#else /* ! YYPARSE_PARAM */
|
||||||
#if defined (__STDC__) || defined (__cplusplus)
|
#if defined (__STDC__) || defined (__STDC_VERSION__) || defined (__cplusplus)
|
||||||
int
|
int
|
||||||
yyparse (void)
|
yyparse (void)
|
||||||
#else
|
#else
|
||||||
@@ -1460,8 +1468,8 @@ YYLTYPE yylloc;
|
|||||||
yylloc.start.line = yylloc.end.line = 1;
|
yylloc.start.line = yylloc.end.line = 1;
|
||||||
yylloc.start.column = yylloc.end.column = 0;
|
yylloc.start.column = yylloc.end.column = 0;
|
||||||
}
|
}
|
||||||
/* Line 1056 of yacc.c. */
|
/* Line 1064 of yacc.c. */
|
||||||
#line 1465 "parse-gram.c"
|
#line 1473 "parse-gram.c"
|
||||||
yylsp[0] = yylloc;
|
yylsp[0] = yylloc;
|
||||||
goto yysetstate;
|
goto yysetstate;
|
||||||
|
|
||||||
@@ -2053,8 +2061,8 @@ yyreduce:
|
|||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Line 1252 of yacc.c. */
|
/* Line 1260 of yacc.c. */
|
||||||
#line 2058 "parse-gram.c"
|
#line 2066 "parse-gram.c"
|
||||||
|
|
||||||
yyvsp -= yylen;
|
yyvsp -= yylen;
|
||||||
yyssp -= yylen;
|
yyssp -= yylen;
|
||||||
|
|||||||
@@ -146,7 +146,7 @@ typedef union YYSTYPE {
|
|||||||
assoc assoc;
|
assoc assoc;
|
||||||
uniqstr uniqstr;
|
uniqstr uniqstr;
|
||||||
} YYSTYPE;
|
} YYSTYPE;
|
||||||
/* Line 1508 of yacc.c. */
|
/* Line 1516 of yacc.c. */
|
||||||
#line 151 "parse-gram.h"
|
#line 151 "parse-gram.h"
|
||||||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
||||||
# define YYSTYPE_IS_DECLARED 1
|
# define YYSTYPE_IS_DECLARED 1
|
||||||
|
|||||||
Reference in New Issue
Block a user