Included in: | parse-lex.c |
#define LITERAL 260
#define ELLIPSES 262
#define EQ_OP 273
#define NE_OP 274
#define PTR_OP 275
#define AND_OP 276
#define OR_OP 277
#define DEC_OP 278
#define INC_OP 279
#define LE_OP 280
#define GE_OP 281
#define SIZEOF 284
#define TYPEDEF 285
#define EXTERN 286
#define STATIC 287
#define AUTO 288
#define REGISTER 289
#define CONST 290
#define VOLATILE 291
#define VOID 292
#define INLINE 293
#define CHAR 294
#define SHORT 295
#define INT 296
#define LONG 297
#define SIGNED 298
#define UNSIGNED 299
#define FLOAT 300
#define DOUBLE 301
#define STRUCT 302
#define UNION 303
#define ENUM 304
#define CASE 305
#define DEFAULT 306
#define IF 307
#define ELSE 308
#define SWITCH 309
#define WHILE 310
#define DO 311
#define FOR 312
#define GOTO 313
#define CONTINUE 314
#define BREAK 315
#define RETURN 316
#define ASM 317
#define yystype YYSTYPE
enum yytokentype | |
{ | |
IDENTIFIER; | |
TYPE_NAME; | |
LITERAL; | |
STRING_LITERAL; | |
ELLIPSES; | |
MUL_ASSIGN; | |
DIV_ASSIGN; | |
MOD_ASSIGN; | |
ADD_ASSIGN; | |
SUB_ASSIGN; | |
LEFT_ASSIGN; | |
RIGHT_ASSIGN; | |
AND_ASSIGN; | |
XOR_ASSIGN; | |
OR_ASSIGN; | |
EQ_OP; | |
NE_OP; | |
PTR_OP; | |
AND_OP; | |
OR_OP; | |
DEC_OP; | |
INC_OP; | |
LE_OP; | |
GE_OP; | |
LEFT_SHIFT; | |
RIGHT_SHIFT; | |
SIZEOF; | |
TYPEDEF; | |
EXTERN; | |
STATIC; | |
AUTO; | |
REGISTER; | |
CONST; | |
VOLATILE; | |
VOID; | |
INLINE; | |
CHAR; | |
SHORT; | |
INT; | |
LONG; | |
SIGNED; | |
UNSIGNED; | |
FLOAT; | |
DOUBLE; | |
STRUCT; | |
UNION; | |
ENUM; | |
CASE; | |
DEFAULT; | |
IF; | |
ELSE; | |
SWITCH; | |
WHILE; | |
DO; | |
FOR; | |
GOTO; | |
CONTINUE; | |
BREAK; | |
RETURN; | |
ASM; | |
} |
Defined in: | parse-yacc.c |