aco/ir: Fix swapped nle.

Cc: mesa-stable

Signed-off-by: Georg Lehmann <dadschoorse@gmail.com>
Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17763>
This commit is contained in:
Georg Lehmann 2022-07-27 12:04:58 +02:00 committed by Marge Bot
parent 9c727b958e
commit 369b8c031a
1 changed files with 1 additions and 1 deletions

View File

@ -639,7 +639,7 @@ get_cmp_info(aco_opcode op, CmpInfo* info)
CMP(lt, /*n*/ge, gt, /*n*/le)
CMP(eq, /*n*/lg, eq, /*n*/lg)
CMP(le, /*n*/gt, ge, /*n*/lt)
CMP(gt, /*n*/le, lt, /*n*/le)
CMP(gt, /*n*/le, lt, /*n*/ge)
CMP(lg, /*n*/eq, lg, /*n*/eq)
CMP(ge, /*n*/lt, le, /*n*/gt)
#undef CMP