home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compcomp / cgrammer / tr.h < prev    next >
Encoding:
Text File  |  1991-02-19  |  384 b   |  24 lines

  1.  
  2.  
  3. typedef struct _tr {
  4.   char *pc;
  5.   int type;
  6.   struct _tr *list_next;
  7.   struct _tr *left;
  8.   struct _tr *right;
  9. } TRnode;
  10.  
  11. enum tr_idents {
  12.   IDENT,
  13.   NOP,
  14.   PTR,
  15.   LABEL,
  16.   STORAGE_CLASS,
  17.   TYPE,
  18.   OP
  19.   };
  20.  
  21. #define TOP 1
  22. #define BOTTOM 2
  23.  
  24.