mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
bah, bison decided to re-arange my tokens!
This commit is contained in:
parent
8c2afef44c
commit
5eeb8bbda2
1 changed files with 2 additions and 1 deletions
|
@ -1487,7 +1487,8 @@ binary_expr (int op, expr_t *e1, expr_t *e2)
|
||||||
} else {
|
} else {
|
||||||
type = t1;
|
type = t1;
|
||||||
}
|
}
|
||||||
if ((op >= OR && op <= GT) || op == '>' || op == '<') {
|
if (op == OR || op == AND || op == EQ || op == NE || op == LE
|
||||||
|
|| op == GE || op == LT || op == GT || op == '>' || op == '<') {
|
||||||
if (options.code.progsversion > PROG_ID_VERSION)
|
if (options.code.progsversion > PROG_ID_VERSION)
|
||||||
type = &type_integer;
|
type = &type_integer;
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue