mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
nir: Fix typo from commit 6702f1acde.
This commit is contained in:
parent
b273958c74
commit
05ee6627d6
1 changed files with 1 additions and 1 deletions
|
|
@ -271,7 +271,7 @@ optimizations = [
|
|||
|
||||
# Propagate negation up multiplication chains
|
||||
(('fmul', ('fneg', a), b), ('fneg', ('fmul', a, b))),
|
||||
(('imul', ('ineg', a), b), ('ineg', ('fmul', a, b))),
|
||||
(('imul', ('ineg', a), b), ('ineg', ('imul', a, b))),
|
||||
|
||||
# Misc. lowering
|
||||
(('fmod', a, b), ('fsub', a, ('fmul', b, ('ffloor', ('fdiv', a, b)))), 'options->lower_fmod'),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue