mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
r600/sfn: remove debug output leftovers
Fixes: ae7d904a73
r600/sfn: Implement source mod optimization in backend
Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24239>
This commit is contained in:
parent
7a4e3b2788
commit
59087003c4
1 changed files with 1 additions and 3 deletions
|
|
@ -475,10 +475,8 @@ bool AluInstr::replace_src(int i, PVirtualValue new_src, uint32_t to_set,
|
|||
auto old_src = m_src[i]->as_register();
|
||||
assert(old_src);
|
||||
|
||||
if (!can_replace_source(old_src, new_src)) {
|
||||
std::cerr << "Can't replace src " << *old_src << " with " << *new_src << "\n";
|
||||
if (!can_replace_source(old_src, new_src))
|
||||
return false;
|
||||
}
|
||||
|
||||
assert(old_src);
|
||||
old_src->del_use(this);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue