288ee56203
to make special nodes like NOP work properly). Realise that the way I'm dealing with the instruction selector is all wrong; I need to physically copy chunks of tree to give to burg (so I can terminate them correctly).
12 lines
103 B
C
12 lines
103 B
C
#ifndef VREG_H
|
|
#define VREG_H
|
|
|
|
struct vreg
|
|
{
|
|
int id;
|
|
};
|
|
|
|
extern struct vreg* new_vreg(void);
|
|
|
|
#endif
|
|
|