From: Julian Seward Date: Mon, 25 Oct 2004 00:41:11 +0000 (+0000) Subject: Duh; fix use of IROPT_LEVEL. X-Git-Tag: svn/VALGRIND_3_0_1^2~923 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0be0ef5b0fc5124cea0d31f8c3f3f5b8c51162e4;p=thirdparty%2Fvalgrind.git Duh; fix use of IROPT_LEVEL. git-svn-id: svn://svn.valgrind.org/vex/trunk@411 --- diff --git a/VEX/priv/ir/iropt.c b/VEX/priv/ir/iropt.c index ca8f32358f..79908346a6 100644 --- a/VEX/priv/ir/iropt.c +++ b/VEX/priv/ir/iropt.c @@ -17,7 +17,7 @@ Set to 0 to completely disable iropt 1 for simple optimisation 2 for maximum optimisation (the default) */ -#define IROPT_LEVEL 0 +#define IROPT_LEVEL 2 /* Set to 1 for lots of debugging output. */ #define DEBUG_IROPT 0 @@ -3202,7 +3202,7 @@ IRBB* do_iropt_BB ( IRBB* bb0, bb = cheap_transformations( bb, specHelper ); - if (IROPT_LEVEL >= 1) { + if (IROPT_LEVEL > 1) { do_expensive = hasGetIorPutI(bb); if (do_expensive) { n_expensive++;