From: Samuel Pitoiset Date: Tue, 27 Aug 2019 09:35:00 +0000 (+0200) Subject: nir: do not assume that the result of fexp2(a) is always an integral X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=966a455bb912cc9fd22580c6cf9b74e27faa4491;p=mesa.git nir: do not assume that the result of fexp2(a) is always an integral It's only correct when 'a' is an integral greater or equal to 0. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=111493 Fixes: 5544b2cbbd2 ("nir/algebraic: Use value range analysis to eliminate useless unary ops") Signed-off-by: Samuel Pitoiset Reviewed-by: Ian Romanick --- diff --git a/src/compiler/nir/nir_range_analysis.c b/src/compiler/nir/nir_range_analysis.c index a313087e056..6fec5fcd7ab 100644 --- a/src/compiler/nir/nir_range_analysis.c +++ b/src/compiler/nir/nir_range_analysis.c @@ -580,6 +580,7 @@ analyze_expression(const nir_alu_instr *instr, unsigned src, ASSERT_UNION_OF_DISJOINT_MATCHES_UNKNOWN_1_SOURCE(table); ASSERT_UNION_OF_EQ_AND_STRICT_INEQ_MATCHES_NONSTRICT_1_SOURCE(table); + r.is_integral = r.is_integral && is_not_negative(r.range); r.range = table[r.range]; break; }