aco/ra: use smaller operand stride for VOP3P with DPP

Reviewed-by: Rhys Perry <pendingchaos02@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23059>
This commit is contained in:
Georg Lehmann
2023-05-13 13:00:04 +02:00
committed by Marge Bot
parent a3d6335742
commit 5b2b782940
+1 -1
View File
@@ -512,7 +512,7 @@ get_subdword_operand_stride(amd_gfx_level gfx_level, const aco_ptr<Instruction>&
return rc.bytes();
if (can_use_opsel(gfx_level, instr->opcode, idx))
return 2;
if (instr->format == Format::VOP3P)
if (instr->isVOP3P())
return 2;
}