Regenerate.

This commit is contained in:
Paul Eggert
2006-12-19 00:35:24 +00:00
parent 0e021770cc
commit 5e6feb866a
2 changed files with 560 additions and 546 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -66,38 +66,39 @@
PERCENT_FILE_PREFIX = 280, PERCENT_FILE_PREFIX = 280,
PERCENT_GLR_PARSER = 281, PERCENT_GLR_PARSER = 281,
PERCENT_INITIAL_ACTION = 282, PERCENT_INITIAL_ACTION = 282,
PERCENT_LEX_PARAM = 283, PERCENT_LANGUAGE = 283,
PERCENT_LOCATIONS = 284, PERCENT_LEX_PARAM = 284,
PERCENT_NAME_PREFIX = 285, PERCENT_LOCATIONS = 285,
PERCENT_NO_DEFAULT_PREC = 286, PERCENT_NAME_PREFIX = 286,
PERCENT_NO_LINES = 287, PERCENT_NO_DEFAULT_PREC = 287,
PERCENT_NONDETERMINISTIC_PARSER = 288, PERCENT_NO_LINES = 288,
PERCENT_OUTPUT = 289, PERCENT_NONDETERMINISTIC_PARSER = 289,
PERCENT_PARSE_PARAM = 290, PERCENT_OUTPUT = 290,
PERCENT_PROVIDES = 291, PERCENT_PARSE_PARAM = 291,
PERCENT_PURE_PARSER = 292, PERCENT_PROVIDES = 292,
PERCENT_PUSH_PARSER = 293, PERCENT_PURE_PARSER = 293,
PERCENT_REQUIRE = 294, PERCENT_PUSH_PARSER = 294,
PERCENT_REQUIRES = 295, PERCENT_REQUIRE = 295,
PERCENT_SKELETON = 296, PERCENT_REQUIRES = 296,
PERCENT_START = 297, PERCENT_SKELETON = 297,
PERCENT_TOKEN_TABLE = 298, PERCENT_START = 298,
PERCENT_VERBOSE = 299, PERCENT_TOKEN_TABLE = 299,
PERCENT_YACC = 300, PERCENT_VERBOSE = 300,
BRACED_CODE = 301, PERCENT_YACC = 301,
CHAR = 302, BRACED_CODE = 302,
EPILOGUE = 303, CHAR = 303,
EQUAL = 304, EPILOGUE = 304,
ID = 305, EQUAL = 305,
ID_COLON = 306, ID = 306,
PERCENT_PERCENT = 307, ID_COLON = 307,
PIPE = 308, PERCENT_PERCENT = 308,
PROLOGUE = 309, PIPE = 309,
SEMICOLON = 310, PROLOGUE = 310,
TYPE = 311, SEMICOLON = 311,
TYPE_TAG_ANY = 312, TYPE = 312,
TYPE_TAG_NONE = 313, TYPE_TAG_ANY = 313,
PERCENT_UNION = 314 TYPE_TAG_NONE = 314,
PERCENT_UNION = 315
}; };
#endif #endif
/* Tokens. */ /* Tokens. */
@@ -127,38 +128,39 @@
#define PERCENT_FILE_PREFIX 280 #define PERCENT_FILE_PREFIX 280
#define PERCENT_GLR_PARSER 281 #define PERCENT_GLR_PARSER 281
#define PERCENT_INITIAL_ACTION 282 #define PERCENT_INITIAL_ACTION 282
#define PERCENT_LEX_PARAM 283 #define PERCENT_LANGUAGE 283
#define PERCENT_LOCATIONS 284 #define PERCENT_LEX_PARAM 284
#define PERCENT_NAME_PREFIX 285 #define PERCENT_LOCATIONS 285
#define PERCENT_NO_DEFAULT_PREC 286 #define PERCENT_NAME_PREFIX 286
#define PERCENT_NO_LINES 287 #define PERCENT_NO_DEFAULT_PREC 287
#define PERCENT_NONDETERMINISTIC_PARSER 288 #define PERCENT_NO_LINES 288
#define PERCENT_OUTPUT 289 #define PERCENT_NONDETERMINISTIC_PARSER 289
#define PERCENT_PARSE_PARAM 290 #define PERCENT_OUTPUT 290
#define PERCENT_PROVIDES 291 #define PERCENT_PARSE_PARAM 291
#define PERCENT_PURE_PARSER 292 #define PERCENT_PROVIDES 292
#define PERCENT_PUSH_PARSER 293 #define PERCENT_PURE_PARSER 293
#define PERCENT_REQUIRE 294 #define PERCENT_PUSH_PARSER 294
#define PERCENT_REQUIRES 295 #define PERCENT_REQUIRE 295
#define PERCENT_SKELETON 296 #define PERCENT_REQUIRES 296
#define PERCENT_START 297 #define PERCENT_SKELETON 297
#define PERCENT_TOKEN_TABLE 298 #define PERCENT_START 298
#define PERCENT_VERBOSE 299 #define PERCENT_TOKEN_TABLE 299
#define PERCENT_YACC 300 #define PERCENT_VERBOSE 300
#define BRACED_CODE 301 #define PERCENT_YACC 301
#define CHAR 302 #define BRACED_CODE 302
#define EPILOGUE 303 #define CHAR 303
#define EQUAL 304 #define EPILOGUE 304
#define ID 305 #define EQUAL 305
#define ID_COLON 306 #define ID 306
#define PERCENT_PERCENT 307 #define ID_COLON 307
#define PIPE 308 #define PERCENT_PERCENT 308
#define PROLOGUE 309 #define PIPE 309
#define SEMICOLON 310 #define PROLOGUE 310
#define TYPE 311 #define SEMICOLON 311
#define TYPE_TAG_ANY 312 #define TYPE 312
#define TYPE_TAG_NONE 313 #define TYPE_TAG_ANY 313
#define PERCENT_UNION 314 #define TYPE_TAG_NONE 314
#define PERCENT_UNION 315
@@ -166,7 +168,7 @@
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE typedef union YYSTYPE
{ {
/* Line 1535 of yacc.c */ /* Line 1487 of yacc.c */
#line 97 "parse-gram.y" #line 97 "parse-gram.y"
symbol *symbol; symbol *symbol;
@@ -179,8 +181,8 @@ typedef union YYSTYPE
unsigned char character; unsigned char character;
} }
/* Line 1535 of yacc.c */ /* Line 1487 of yacc.c */
#line 184 "parse-gram.h" #line 186 "parse-gram.h"
YYSTYPE; YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_TRIVIAL 1
# define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define yystype YYSTYPE /* obsolescent; will be withdrawn */
@@ -205,3 +207,4 @@ typedef struct YYLTYPE