From 4189ea373a609f272fb550130dd4bee8cfca2b6e Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Fri, 7 Oct 2022 15:52:15 +0200 Subject: [PATCH] r600/sfn: Allow copy-prop of group dest into origin Signed-off-by: Gert Wollny Part-of: --- src/gallium/drivers/r600/sfn/sfn_instr_alu.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gallium/drivers/r600/sfn/sfn_instr_alu.cpp b/src/gallium/drivers/r600/sfn/sfn_instr_alu.cpp index b1db839484e..a55148edfcc 100644 --- a/src/gallium/drivers/r600/sfn/sfn_instr_alu.cpp +++ b/src/gallium/drivers/r600/sfn/sfn_instr_alu.cpp @@ -322,8 +322,7 @@ bool AluInstr::can_propagate_dest() const assert(m_dest); - if (src_reg->pin() == pin_fully || - src_reg->pin() == pin_group) { + if (src_reg->pin() == pin_fully) { return false; }