mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
nir/algebraic: mark a few comparison simplifications as precise
No vkpipeline-db changes found. Signed-off-by: Rhys Perry <pendingchaos02@gmail.com> Reveiewed-by: Alyssa Rosenzweig alyssa.rosenzweig@collabora.com Reviewed-by: Connor Abbott <cwabbott0@gmail.com>
This commit is contained in:
parent
79801b9d7d
commit
e8644122ed
1 changed files with 2 additions and 2 deletions
|
|
@ -209,8 +209,8 @@ optimizations = [
|
|||
# Comparison simplifications
|
||||
(('~inot', ('flt', a, b)), ('fge', a, b)),
|
||||
(('~inot', ('fge', a, b)), ('flt', a, b)),
|
||||
(('~inot', ('feq', a, b)), ('fne', a, b)),
|
||||
(('~inot', ('fne', a, b)), ('feq', a, b)),
|
||||
(('inot', ('feq', a, b)), ('fne', a, b)),
|
||||
(('inot', ('fne', a, b)), ('feq', a, b)),
|
||||
(('inot', ('ilt', a, b)), ('ige', a, b)),
|
||||
(('inot', ('ult', a, b)), ('uge', a, b)),
|
||||
(('inot', ('ige', a, b)), ('ilt', a, b)),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue