From: Ian Romanick Date: Tue, 14 Apr 2015 15:40:22 +0000 (-0700) Subject: nir: Fix typo in "ushr by 0" algebraic replacement X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bc672e261c5f7ff56cd2b8f6b518ebfdc0163bb7;p=mesa.git nir: Fix typo in "ushr by 0" algebraic replacement Signed-off-by: Ian Romanick Reviewed-by: Jordan Justen Reviewed-by: Jason Ekstrand Reviewed-by: Connor Abbott Cc: "10.5" --- diff --git a/src/glsl/nir/nir_opt_algebraic.py b/src/glsl/nir/nir_opt_algebraic.py index 319732dfca7..cdb19241c43 100644 --- a/src/glsl/nir/nir_opt_algebraic.py +++ b/src/glsl/nir/nir_opt_algebraic.py @@ -133,7 +133,7 @@ optimizations = [ (('ishr', 0, a), 0), (('ishr', a, 0), a), (('ushr', 0, a), 0), - (('ushr', a, 0), 0), + (('ushr', a, 0), a), # Exponential/logarithmic identities (('fexp2', ('flog2', a)), a), # 2^lg2(a) = a (('fexp', ('flog', a)), a), # e^ln(a) = a