nir: Fix broken fsat recognizer.
authorEric Anholt <eric@anholt.net>
Fri, 30 Jan 2015 22:03:14 +0000 (14:03 -0800)
committerEric Anholt <eric@anholt.net>
Fri, 6 Feb 2015 23:57:55 +0000 (15:57 -0800)
We've probably never seen this ridiculous pattern in the wild, so it
didn't matter.

Reviewed-by: Connor Abbott <cwabbott0@gmail.com>
Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com>
src/glsl/nir/nir_opt_algebraic.py

index 9b40d48..a5fe19a 100644 (file)
@@ -82,7 +82,7 @@ optimizations = [
    (('feq', ('fadd', a, b), 0.0), ('feq', a, ('fneg', b))),
    (('fne', ('fadd', a, b), 0.0), ('fne', a, ('fneg', b))),
    (('fge', ('fneg', ('fabs', a)), 0.0), ('feq', a, 0.0)),
-   (('fmin', ('fmax', a, 1.0), 0.0), ('fsat', a)),
+   (('fmin', ('fmax', a, 0.0), 1.0), ('fsat', a)),
    # Logical and bit operations
    (('fand', a, 0.0), 0.0),
    (('iand', a, a), a),