From: Alyssa Rosenzweig Date: Sun, 21 Apr 2019 05:11:37 +0000 (+0000) Subject: panfrost: Use actual imov instruction X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=328a5ef598db141ffbec638fb831f9047cb687bf;p=mesa.git panfrost: Use actual imov instruction The bug this worked around is no longer applicable, it seems -- remove the hack that breaks more than it fixes. Signed-off-by: Alyssa Rosenzweig --- diff --git a/src/gallium/drivers/panfrost/midgard/midgard_compile.c b/src/gallium/drivers/panfrost/midgard/midgard_compile.c index 0407f028a0d..317f25762dc 100644 --- a/src/gallium/drivers/panfrost/midgard/midgard_compile.c +++ b/src/gallium/drivers/panfrost/midgard/midgard_compile.c @@ -1093,7 +1093,7 @@ emit_alu(compiler_context *ctx, nir_alu_instr *instr) /* XXX: Use fmov, not imov, since imov was causing major * issues with texture precision? XXX research */ - ALU_CASE(imov, fmov); + ALU_CASE(imov, imov); ALU_CASE(feq32, feq); ALU_CASE(fne32, fne);