buildtools/binutils/gas/itbl-parse.h
Ingo Weinhold 6809759e16 Copying binutils 2.16.1 into trunk.
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@15075 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-11-22 16:32:10 +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 */