mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
i965: fix comparison warning
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
26ff7e373f
commit
cec377eed3
1 changed files with 1 additions and 1 deletions
|
|
@ -6381,7 +6381,7 @@ move_interpolation_to_top(nir_shader *nir)
|
|||
instr
|
||||
};
|
||||
|
||||
for (int i = 0; i < ARRAY_SIZE(move); i++) {
|
||||
for (unsigned i = 0; i < ARRAY_SIZE(move); i++) {
|
||||
if (move[i]->block != top) {
|
||||
move[i]->block = top;
|
||||
exec_node_remove(&move[i]->node);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue