freebsd-dev/gas/itbl-parse.h
Dimitry Andric ecb78adf80 Import the binutils-2_15-branch from the sourceware CVS repository,
exactly as it was on Sun, 23 May 2004 04:40:32 +0000.

Corresponds to git commit 242eda977694c559d7d21626702034c13d745597.
2010-10-17 21:56:26 +00:00

30 lines
459 B
C

#ifndef BISON_Y_TAB_H
# define BISON_Y_TAB_H
#ifndef YYSTYPE
typedef union
{
char *str;
int num;
int processor;
unsigned long val;
} yystype;
# define YYSTYPE yystype
# define YYSTYPE_IS_TRIVIAL 1
#endif
# define DREG 257
# define CREG 258
# define GREG 259
# define IMMED 260
# define ADDR 261
# define INSN 262
# define NUM 263
# define ID 264
# define NL 265
# define PNUM 266
extern YYSTYPE yylval;
#endif /* not BISON_Y_TAB_H */