From ba44634e4dde5144330b0d31278a4fa8de5dfb97 Mon Sep 17 00:00:00 2001 From: Rhys Perry Date: Tue, 1 Feb 2022 13:16:45 +0000 Subject: [PATCH] aco: fix v_mac_legacy_f32 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rhys Perry Reviewed-by: Daniel Schürmann Fixes: f68797ead72 ("aco: create v_mac_legacy_f32/v_fmac_legacy_f32") Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/5952 Part-of: --- src/amd/compiler/aco_register_allocation.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/amd/compiler/aco_register_allocation.cpp b/src/amd/compiler/aco_register_allocation.cpp index ab10b2f3bcc..459e232be99 100644 --- a/src/amd/compiler/aco_register_allocation.cpp +++ b/src/amd/compiler/aco_register_allocation.cpp @@ -2632,6 +2632,7 @@ register_allocation(Program* program, std::vector& live_out_per_block, ra if (instr->opcode == aco_opcode::v_interp_p2_f32 || instr->opcode == aco_opcode::v_mac_f32 || instr->opcode == aco_opcode::v_fmac_f32 || instr->opcode == aco_opcode::v_mac_f16 || instr->opcode == aco_opcode::v_fmac_f16 || + instr->opcode == aco_opcode::v_mac_legacy_f32 || instr->opcode == aco_opcode::v_fmac_legacy_f32 || instr->opcode == aco_opcode::v_pk_fmac_f16 || instr->opcode == aco_opcode::v_writelane_b32 ||