mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
Try to fix a few issues.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4671 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
6c84350afd
commit
a601a18708
1 changed files with 1 additions and 0 deletions
|
@ -105,6 +105,7 @@ pbool opt_stripfunctions; //if a functions is only ever called directly or by e
|
||||||
pbool opt_locals_overlapping; //make the local vars of all functions occupy the same globals.
|
pbool opt_locals_overlapping; //make the local vars of all functions occupy the same globals.
|
||||||
pbool opt_logicops; //don't make conditions enter functions if the return value will be discarded due to a previous value. (C style if statements)
|
pbool opt_logicops; //don't make conditions enter functions if the return value will be discarded due to a previous value. (C style if statements)
|
||||||
pbool opt_vectorcalls; //vectors can be packed into 3 floats, which can yield lower numpr_globals, but cost two more statements per call (only works for q1 calling conventions).
|
pbool opt_vectorcalls; //vectors can be packed into 3 floats, which can yield lower numpr_globals, but cost two more statements per call (only works for q1 calling conventions).
|
||||||
|
pbool opt_classfields;
|
||||||
pbool opt_simplifiedifs; //if (f != 0) -> if_f (f). if (f == 0) -> ifnot_f (f)
|
pbool opt_simplifiedifs; //if (f != 0) -> if_f (f). if (f == 0) -> ifnot_f (f)
|
||||||
//bool opt_comexprremoval;
|
//bool opt_comexprremoval;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue