Changed order of declarations
This commit is contained in:
parent
a0d74876b8
commit
04d3c7152c
|
@ -144,6 +144,13 @@ struct lines {
|
||||||
/* Used to indicate a invalid contents of opoff */
|
/* Used to indicate a invalid contents of opoff */
|
||||||
#define NO_OFF ((char *)-1)
|
#define NO_OFF ((char *)-1)
|
||||||
|
|
||||||
|
struct loc_label {
|
||||||
|
locl_t *l_chain; /* The next label with same low order bits */
|
||||||
|
char l_hinum; /* high bits of number of label */
|
||||||
|
char l_defined; /* see below */
|
||||||
|
int l_min,l_max; /* boundaries of value */
|
||||||
|
};
|
||||||
|
|
||||||
/* The structure containing procedure pertinent data */
|
/* The structure containing procedure pertinent data */
|
||||||
/* Used for environment stacking for nested PRO's */
|
/* Used for environment stacking for nested PRO's */
|
||||||
|
|
||||||
|
@ -155,13 +162,6 @@ struct procstat {
|
||||||
stat_t *s_prevstat; /* backward chain of nested procedures */
|
stat_t *s_prevstat; /* backward chain of nested procedures */
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
struct loc_label {
|
|
||||||
locl_t *l_chain; /* The next label with same low order bits */
|
|
||||||
char l_hinum; /* high bits of number of label */
|
|
||||||
char l_defined; /* see below */
|
|
||||||
int l_min,l_max; /* boundaries of value */
|
|
||||||
};
|
|
||||||
|
|
||||||
/* contents of l_defined */
|
/* contents of l_defined */
|
||||||
#define EMPTY 0 /* Empty slot */
|
#define EMPTY 0 /* Empty slot */
|
||||||
#define NO 1 /* not defined yet */
|
#define NO 1 /* not defined yet */
|
||||||
|
|
Loading…
Reference in a new issue