mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 03:48:06 +02:00
aco: Fix signedness compare warning.
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com> Reviewed-by: Daniel Schürmann <daniel@schuermann.dev> Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3483> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3483>
This commit is contained in:
parent
533a20dbd5
commit
1c9ecb2123
1 changed files with 1 additions and 1 deletions
|
|
@ -732,7 +732,7 @@ void process_instructions(exec_ctx& ctx, Block* block,
|
|||
int num;
|
||||
Temp cond, exit_cond;
|
||||
if (instr->operands[0].isConstant()) {
|
||||
assert(instr->operands[0].constantValue() == -1);
|
||||
assert(instr->operands[0].constantValue() == -1u);
|
||||
/* transition to exact and set exec to zero */
|
||||
Temp old_exec = ctx.info[block->index].exec.back().first;
|
||||
Temp new_exec = bld.tmp(bld.lm);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue