mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-08 19:20:12 +01:00
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:
parent
5ab6ebefa4
commit
4189ea373a
1 changed files with 1 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue