r600/sfn: Allow copy-prop of group dest into origin

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19300>
This commit is contained in:
Gert Wollny 2022-10-07 15:52:15 +02:00 committed by Marge Bot
parent 5ab6ebefa4
commit 4189ea373a

View file

@ -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;
}