~ubuntu-branches/ubuntu/hoary/binutils/hoary

« back to all changes in this revision

Viewing changes to gas/itbl-parse.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2005-03-18 13:07:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050318130752-j4i37zgqclj53b94
Tags: 2.15-5ubuntu2
debian/rules: Call pkgstriptranslations if present (the package does not
use debhelper, thus it does not happen automatically).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef BISON_Y_TAB_H
 
2
# define BISON_Y_TAB_H
 
3
 
 
4
#ifndef YYSTYPE
 
5
typedef union 
 
6
  {
 
7
    char *str;
 
8
    int num;
 
9
    int processor;
 
10
    unsigned long val;
 
11
  } yystype;
 
12
# define YYSTYPE yystype
 
13
# define YYSTYPE_IS_TRIVIAL 1
 
14
#endif
 
15
# define        DREG    257
 
16
# define        CREG    258
 
17
# define        GREG    259
 
18
# define        IMMED   260
 
19
# define        ADDR    261
 
20
# define        INSN    262
 
21
# define        NUM     263
 
22
# define        ID      264
 
23
# define        NL      265
 
24
# define        PNUM    266
 
25
 
 
26
 
 
27
extern YYSTYPE yylval;
 
28
 
 
29
#endif /* not BISON_Y_TAB_H */