mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-18 14:21:36 +00:00
2 missing return values
This commit is contained in:
parent
9867ce26b3
commit
8d87767afa
1 changed files with 3 additions and 1 deletions
4
ir.c
4
ir.c
|
@ -1304,6 +1304,7 @@ static bool ir_block_life_prop_previous(ir_block* self, ir_block *prev, bool *ch
|
|||
printf("%s got from prev: %s\n", self->label, prev->living[i]->_name);
|
||||
*/
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool ir_block_life_propagate(ir_block *self, ir_block *prev, bool *changed)
|
||||
|
@ -1448,7 +1449,8 @@ static bool ir_block_life_propagate(ir_block *self, ir_block *prev, bool *change
|
|||
}
|
||||
|
||||
if (self->run_id == self->owner->run_id)
|
||||
return;
|
||||
return true;
|
||||
|
||||
self->run_id = self->owner->run_id;
|
||||
|
||||
for (i = 0; i < self->entries_count; ++i)
|
||||
|
|
Loading…
Reference in a new issue