ref: 7369e862b993e9e62b153f0101d0866f85d5a485
dir: /cc2/cc2.h/
typedef struct {
union {
struct {
char type;
char storage;
} v;
struct {
short addr;
} l;
} u;
} Symbol;
typedef struct node {
char op;
char type;
int8_t sethi;
int8_t addrtype;
union {
short id;
int imm;
} u;
struct node *left, *right;
} Node;