From a601a1870869527a66756d16a55694765e2d26f9 Mon Sep 17 00:00:00 2001 From: Spoike Date: Fri, 30 May 2014 03:59:38 +0000 Subject: [PATCH] Try to fix a few issues. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4671 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/qclib/qcc_pr_comp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/qclib/qcc_pr_comp.c b/engine/qclib/qcc_pr_comp.c index d7384de5d..941d7928e 100644 --- a/engine/qclib/qcc_pr_comp.c +++ b/engine/qclib/qcc_pr_comp.c @@ -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_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_classfields; pbool opt_simplifiedifs; //if (f != 0) -> if_f (f). if (f == 0) -> ifnot_f (f) //bool opt_comexprremoval;