r600/sfn: Pin alu sources as well when registers are pinned

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Assisted-by: Copilot (auto mode)
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41945>
This commit is contained in:
Gert Wollny 2026-05-15 19:29:00 +02:00 committed by Marge Bot
parent 2643e12396
commit 08f801d6db

View file

@ -742,6 +742,10 @@ AluInstr::pin_registers()
if (m_dest)
m_dest->pin_to_chan();
for (auto& src : m_src) {
if (auto reg = src->as_register())
reg->pin_to_chan();
}
}
bool