mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-20 18:32:01 +00:00
removing debug output
This commit is contained in:
parent
214c063b3f
commit
d69fda7fa1
1 changed files with 1 additions and 7 deletions
8
ir.c
8
ir.c
|
@ -1571,11 +1571,8 @@ bool ir_function_allocate_locals(ir_function *self)
|
|||
{
|
||||
slot = alloc.locals[a];
|
||||
|
||||
if (ir_values_overlap(v, slot)) {
|
||||
printf("over\n");
|
||||
if (ir_values_overlap(v, slot))
|
||||
continue;
|
||||
}
|
||||
printf("not\n");
|
||||
|
||||
if (!ir_value_life_merge_into(slot, v))
|
||||
goto error;
|
||||
|
@ -1609,9 +1606,6 @@ bool ir_function_allocate_locals(ir_function *self)
|
|||
for (i = 0; i < self->values_count; ++i)
|
||||
self->values[i]->code.slot = alloc.positions[self->values[i]->code.slot];
|
||||
|
||||
for (i = 0; i < self->values_count; ++i)
|
||||
printf("Value %s at slot %i\n", self->values[i]->name,
|
||||
self->values[i]->code.slot);
|
||||
goto cleanup;
|
||||
|
||||
error:
|
||||
|
|
Loading…
Reference in a new issue