mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-31 12:00:38 +00:00
Temporarily disable the new tempalloc strat
This commit is contained in:
parent
f9b1d057b5
commit
9c5b95bbe3
1 changed files with 2 additions and 2 deletions
4
ir.c
4
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)) {
|
||||
|
|
Loading…
Reference in a new issue