From: Alyssa Rosenzweig Date: Mon, 27 Apr 2020 23:11:07 +0000 (-0400) Subject: pan/mdg: Track v_mov type (force uint32 for now?) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=53c183736e3ae3692eecd761c1b82676b429bc59;p=mesa.git pan/mdg: Track v_mov type (force uint32 for now?) Signed-off-by: Alyssa Rosenzweig Part-of: --- diff --git a/src/panfrost/midgard/compiler.h b/src/panfrost/midgard/compiler.h index 92772e26a42..5158ea6a85c 100644 --- a/src/panfrost/midgard/compiler.h +++ b/src/panfrost/midgard/compiler.h @@ -518,8 +518,10 @@ v_mov(unsigned src, unsigned dest) .type = TAG_ALU_4, .mask = 0xF, .src = { ~0, src, ~0, ~0 }, + .src_types = { 0, nir_type_uint32 }, .swizzle = SWIZZLE_IDENTITY, .dest = dest, + .dest_type = nir_type_uint32, .alu = { .op = midgard_alu_op_imov, .reg_mode = midgard_reg_mode_32,