mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 11:28:05 +02:00
ir3/legalize: remove unused parameter from delay_update
Signed-off-by: Job Noorman <job@noorman.info> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34108>
This commit is contained in:
parent
0c05839fcd
commit
0e9b7c6ff3
1 changed files with 2 additions and 3 deletions
|
|
@ -533,8 +533,7 @@ delay_calc(struct ir3_compiler *compiler,
|
||||||
static void
|
static void
|
||||||
delay_update(struct ir3_compiler *compiler,
|
delay_update(struct ir3_compiler *compiler,
|
||||||
struct ir3_legalize_state *state,
|
struct ir3_legalize_state *state,
|
||||||
struct ir3_instruction *instr,
|
struct ir3_instruction *instr)
|
||||||
bool mergedregs)
|
|
||||||
{
|
{
|
||||||
if (writes_addr1(instr) && instr->block->in_early_preamble)
|
if (writes_addr1(instr) && instr->block->in_early_preamble)
|
||||||
return;
|
return;
|
||||||
|
|
@ -812,7 +811,7 @@ legalize_block(struct ir3_legalize_ctx *ctx, struct ir3_block *block)
|
||||||
if (count)
|
if (count)
|
||||||
state->cycle += 1;
|
state->cycle += 1;
|
||||||
|
|
||||||
delay_update(ctx->compiler, state, n, mergedregs);
|
delay_update(ctx->compiler, state, n);
|
||||||
|
|
||||||
if (count)
|
if (count)
|
||||||
state->cycle += n->repeat + n->nop;
|
state->cycle += n->repeat + n->nop;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue