mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-24 10:44:15 +08:00
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:
parent
9c727b958e
commit
369b8c031a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user