mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-06 01:11:59 +00:00
[qfcc] Implement mod for v6 progs
The tricky bit was figuring out how to get `floor()` out of the available instructions. It's handy that the comparison ops always returned floats and didn't force the use of branches.
This commit is contained in:
parent
7b4aa1efd8
commit
2bd9d26cc1
1 changed files with 9 additions and 0 deletions
|
@ -1208,6 +1208,15 @@ reimplement_binary_expr (int op, const expr_t *e1, const expr_t *e2)
|
|||
return binary_expr ('-', e1, binary_expr ('*', e2, trn));
|
||||
}
|
||||
break;
|
||||
case QC_MOD:
|
||||
{
|
||||
auto div = paren_expr (binary_expr ('/', e1, e2));
|
||||
auto trn = binary_expr ('&', div, div);
|
||||
auto one = binary_expr (QC_GT, trn, div);
|
||||
auto flr = binary_expr ('-', trn, one);
|
||||
return binary_expr ('-', e1, binary_expr ('*', e2, flr));
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
return nullptr;
|
||||
|
|
Loading…
Reference in a new issue