mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-31 05:00:35 +00:00
hopefully take care of freebsd
This commit is contained in:
parent
c2d3d8f3ab
commit
248de6858d
2 changed files with 3 additions and 3 deletions
|
@ -21,7 +21,7 @@ typedef struct {
|
|||
statref_t *refs;
|
||||
dstatement_t *statement;
|
||||
char *name;
|
||||
} label_t;
|
||||
} elabel_t;
|
||||
|
||||
typedef struct {
|
||||
struct expr_s *head;
|
||||
|
@ -43,7 +43,7 @@ typedef struct expr_s {
|
|||
string_t file;
|
||||
int paren;
|
||||
union {
|
||||
label_t label;
|
||||
elabel_t label;
|
||||
block_t block;
|
||||
struct {
|
||||
int op;
|
||||
|
|
|
@ -324,7 +324,7 @@ emit_expr (expr_t *e)
|
|||
def_t *def_a;
|
||||
def_t *def_b;
|
||||
statref_t *ref;
|
||||
label_t *label;
|
||||
elabel_t *label;
|
||||
//opcode_t *op;
|
||||
|
||||
switch (e->type) {
|
||||
|
|
Loading…
Reference in a new issue