r600/sfn: No need to pin LDS dests to chan

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20205>
This commit is contained in:
Gert Wollny
2022-12-06 08:16:54 +01:00
committed by Marge Bot
parent 6d93139061
commit 5f82b4cf5b
@@ -515,7 +515,7 @@ ValueFactory::dest_vec(const nir_dest& dst, int num_components)
std::vector<PRegister, Allocator<PRegister>> retval;
retval.reserve(num_components);
for (int i = 0; i < num_components; ++i)
retval.push_back(dest(dst, i, num_components > 1 ? pin_chan : pin_free));
retval.push_back(dest(dst, i, num_components > 1 ? pin_none : pin_free));
return retval;
}