mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-19 21:00:40 +02:00
ra: Delete the conflict lists in ra_set_finalize
They are never used after the set is finalized so there's no reason to keep them around. Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
7539ac7fe2
commit
bdcc8f3230
1 changed files with 5 additions and 0 deletions
|
|
@ -348,6 +348,11 @@ ra_set_finalize(struct ra_regs *regs, unsigned int **q_values)
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (b = 0; b < regs->count; b++) {
|
||||
ralloc_free(regs->regs[b].conflict_list);
|
||||
regs->regs[b].conflict_list = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue