From: Wolfgang (Blub) Bumiller Date: Thu, 6 Dec 2012 16:41:00 +0000 (+0100) Subject: Temporarily disable the new tempalloc strat X-Git-Tag: 0.1.9~104 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=commitdiff_plain;h=9c5b95bbe3afa4275fde160c6ac6aafeb2354dbf Temporarily disable the new tempalloc strat --- diff --git a/ir.c b/ir.c index eb2e6b5..afb1282 100644 --- a/ir.c +++ b/ir.c @@ -2920,7 +2920,7 @@ static bool gen_global_function(ir_builder *ir, ir_value *global) ir_function *irfun; size_t i; -#if 0 +#ifndef NEW_ALLOC_STRAT size_t local_var_end; #endif @@ -2948,7 +2948,7 @@ static bool gen_global_function(ir_builder *ir, ir_value *global) fun.firstlocal = vec_size(code_globals); -#if 0 +#ifndef NEW_ALLOC_STRAT local_var_end = fun.firstlocal; for (i = 0; i < vec_size(irfun->locals); ++i) { if (!ir_builder_gen_global(ir, irfun->locals[i], true)) {