diff options
author | Alyssa Rosenzweig <[email protected]> | 2019-04-21 05:11:37 +0000 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2019-04-24 02:22:31 +0000 |
commit | 328a5ef598db141ffbec638fb831f9047cb687bf (patch) | |
tree | 3ca7f9d1664cb6610c51f98fce4559a0454cf6c2 /src | |
parent | 12cd89da816336bf40f989f092c62ea473906aac (diff) |
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 <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/panfrost/midgard/midgard_compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |