nir: Delete unused arg in get_iteration
nir_const_value is not needed in get_iteration Signed-off-by: Elie Tournier <tournier.elie@gmail.com> Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
This commit is contained in:

committed by
Eric Engestrom

parent
077879cf5e
commit
082d5b1aee
@@ -359,7 +359,7 @@ find_loop_terminators(loop_info_state *state)
|
|||||||
|
|
||||||
static int32_t
|
static int32_t
|
||||||
get_iteration(nir_op cond_op, nir_const_value *initial, nir_const_value *step,
|
get_iteration(nir_op cond_op, nir_const_value *initial, nir_const_value *step,
|
||||||
nir_const_value *limit, nir_alu_instr *alu)
|
nir_const_value *limit)
|
||||||
{
|
{
|
||||||
int32_t iter;
|
int32_t iter;
|
||||||
|
|
||||||
@@ -490,7 +490,7 @@ calculate_iterations(nir_const_value *initial, nir_const_value *step,
|
|||||||
trip_offset = 1;
|
trip_offset = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int iter_int = get_iteration(cond_alu->op, initial, step, limit, alu);
|
int iter_int = get_iteration(cond_alu->op, initial, step, limit);
|
||||||
|
|
||||||
/* If iter_int is negative the loop is ill-formed or is the conditional is
|
/* If iter_int is negative the loop is ill-formed or is the conditional is
|
||||||
* unsigned with a huge iteration count so don't bother going any further.
|
* unsigned with a huge iteration count so don't bother going any further.
|
||||||
|
Reference in New Issue
Block a user