* src/parse-gram.h, src/parse-gram.c: Regen.
This commit is contained in:
Akim Demaille
2009-04-05 22:19:20 +02:00
parent 00f5d57533
commit 3583d96b77
3 changed files with 607 additions and 628 deletions

View File

@@ -1,3 +1,8 @@
2009-04-06 Akim Demaille <demaille@gostai.com>
Regen.
* src/parse-gram.h, src/parse-gram.c: Regen.
2009-04-06 Akim Demaille <demaille@gostai.com> 2009-04-06 Akim Demaille <demaille@gostai.com>
rename muscle_tab.* as muscle-tab.* for consistency. rename muscle_tab.* as muscle-tab.* for consistency.

File diff suppressed because it is too large Load Diff

View File

@@ -56,43 +56,40 @@
PERCENT_DEFAULT_PREC = 273, PERCENT_DEFAULT_PREC = 273,
PERCENT_DEFINE = 274, PERCENT_DEFINE = 274,
PERCENT_DEFINES = 275, PERCENT_DEFINES = 275,
PERCENT_ERROR_VERBOSE = 276, PERCENT_EXPECT = 276,
PERCENT_EXPECT = 277, PERCENT_EXPECT_RR = 277,
PERCENT_EXPECT_RR = 278, PERCENT_FLAG = 278,
PERCENT_FLAG = 279, PERCENT_FILE_PREFIX = 279,
PERCENT_FILE_PREFIX = 280, PERCENT_GLR_PARSER = 280,
PERCENT_GLR_PARSER = 281, PERCENT_INITIAL_ACTION = 281,
PERCENT_INITIAL_ACTION = 282, PERCENT_LANGUAGE = 282,
PERCENT_LANGUAGE = 283, PERCENT_LEX_PARAM = 283,
PERCENT_LEX_PARAM = 284, PERCENT_NAME_PREFIX = 284,
PERCENT_LOCATIONS = 285, PERCENT_NO_DEFAULT_PREC = 285,
PERCENT_NAME_PREFIX = 286, PERCENT_NO_LINES = 286,
PERCENT_NO_DEFAULT_PREC = 287, PERCENT_NONDETERMINISTIC_PARSER = 287,
PERCENT_NO_LINES = 288, PERCENT_OUTPUT = 288,
PERCENT_NONDETERMINISTIC_PARSER = 289, PERCENT_PARSE_PARAM = 289,
PERCENT_OUTPUT = 290, PERCENT_REQUIRE = 290,
PERCENT_PARSE_PARAM = 291, PERCENT_SKELETON = 291,
PERCENT_PURE_PARSER = 292, PERCENT_START = 292,
PERCENT_REQUIRE = 293, PERCENT_TOKEN_TABLE = 293,
PERCENT_SKELETON = 294, PERCENT_VERBOSE = 294,
PERCENT_START = 295, PERCENT_YACC = 295,
PERCENT_TOKEN_TABLE = 296, BRACED_CODE = 296,
PERCENT_VERBOSE = 297, CHAR = 297,
PERCENT_YACC = 298, EPILOGUE = 298,
BRACED_CODE = 299, EQUAL = 299,
CHAR = 300, ID = 300,
EPILOGUE = 301, ID_COLON = 301,
EQUAL = 302, PERCENT_PERCENT = 302,
ID = 303, PIPE = 303,
ID_COLON = 304, PROLOGUE = 304,
PERCENT_PERCENT = 305, SEMICOLON = 305,
PIPE = 306, TAG = 306,
PROLOGUE = 307, TAG_ANY = 307,
SEMICOLON = 308, TAG_NONE = 308,
TAG = 309, PERCENT_UNION = 309
TAG_ANY = 310,
TAG_NONE = 311,
PERCENT_UNION = 312
}; };
#endif #endif
/* Tokens. */ /* Tokens. */
@@ -115,43 +112,40 @@
#define PERCENT_DEFAULT_PREC 273 #define PERCENT_DEFAULT_PREC 273
#define PERCENT_DEFINE 274 #define PERCENT_DEFINE 274
#define PERCENT_DEFINES 275 #define PERCENT_DEFINES 275
#define PERCENT_ERROR_VERBOSE 276 #define PERCENT_EXPECT 276
#define PERCENT_EXPECT 277 #define PERCENT_EXPECT_RR 277
#define PERCENT_EXPECT_RR 278 #define PERCENT_FLAG 278
#define PERCENT_FLAG 279 #define PERCENT_FILE_PREFIX 279
#define PERCENT_FILE_PREFIX 280 #define PERCENT_GLR_PARSER 280
#define PERCENT_GLR_PARSER 281 #define PERCENT_INITIAL_ACTION 281
#define PERCENT_INITIAL_ACTION 282 #define PERCENT_LANGUAGE 282
#define PERCENT_LANGUAGE 283 #define PERCENT_LEX_PARAM 283
#define PERCENT_LEX_PARAM 284 #define PERCENT_NAME_PREFIX 284
#define PERCENT_LOCATIONS 285 #define PERCENT_NO_DEFAULT_PREC 285
#define PERCENT_NAME_PREFIX 286 #define PERCENT_NO_LINES 286
#define PERCENT_NO_DEFAULT_PREC 287 #define PERCENT_NONDETERMINISTIC_PARSER 287
#define PERCENT_NO_LINES 288 #define PERCENT_OUTPUT 288
#define PERCENT_NONDETERMINISTIC_PARSER 289 #define PERCENT_PARSE_PARAM 289
#define PERCENT_OUTPUT 290 #define PERCENT_REQUIRE 290
#define PERCENT_PARSE_PARAM 291 #define PERCENT_SKELETON 291
#define PERCENT_PURE_PARSER 292 #define PERCENT_START 292
#define PERCENT_REQUIRE 293 #define PERCENT_TOKEN_TABLE 293
#define PERCENT_SKELETON 294 #define PERCENT_VERBOSE 294
#define PERCENT_START 295 #define PERCENT_YACC 295
#define PERCENT_TOKEN_TABLE 296 #define BRACED_CODE 296
#define PERCENT_VERBOSE 297 #define CHAR 297
#define PERCENT_YACC 298 #define EPILOGUE 298
#define BRACED_CODE 299 #define EQUAL 299
#define CHAR 300 #define ID 300
#define EPILOGUE 301 #define ID_COLON 301
#define EQUAL 302 #define PERCENT_PERCENT 302
#define ID 303 #define PIPE 303
#define ID_COLON 304 #define PROLOGUE 304
#define PERCENT_PERCENT 305 #define SEMICOLON 305
#define PIPE 306 #define TAG 306
#define PROLOGUE 307 #define TAG_ANY 307
#define SEMICOLON 308 #define TAG_NONE 308
#define TAG 309 #define PERCENT_UNION 309
#define TAG_ANY 310
#define TAG_NONE 311
#define PERCENT_UNION 312
@@ -173,7 +167,7 @@ typedef union YYSTYPE
/* Line 1600 of yacc.c */ /* Line 1600 of yacc.c */
#line 177 "../../src/parse-gram.h" #line 171 "../../src/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 */