Pristine Ack-5.5
[Ack-5.5.git] / mach / proto / ncg / regvar.h
1 /*
2  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3  * See the copyright notice in the ACK home directory, in the file "Copyright".
4  */
5 /* $Id: regvar.h,v 0.3 1994/06/24 13:27:59 ceriel Exp $ */
6
7 struct regvar {
8         struct regvar  *rv_next;
9         long            rv_off;
10         int             rv_size;
11         int             rv_type;
12         int             rv_score;
13         int             rv_reg;
14 };
15
16 struct regassigned {
17         struct regvar  *ra_rv;
18         int             ra_score;
19 };
20
21 extern struct regvar *rvlist;
22 extern int nregvar[];
23 extern struct regassigned *regassigned[];