nir: Fix typo from commit 6702f1acde.

This commit is contained in:
Matt Turner 2016-03-30 19:18:16 -07:00
parent b273958c74
commit 05ee6627d6

View file

@ -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'),