mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-30 21:21:39 +02:00
r600/sfn: remove leftover debug output
Fixes: 3c7368de56
r600/sfn: Handle slot differences between pre-EG and EG
Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17839>
This commit is contained in:
parent
ac5c1039a2
commit
33ca04eb63
1 changed files with 1 additions and 4 deletions
|
|
@ -82,11 +82,8 @@ bool AluGroup::add_trans_instructions(AluInstr *instr)
|
|||
auto opinfo = alu_ops.find(instr->opcode());
|
||||
assert(opinfo != alu_ops.end());
|
||||
|
||||
if (!opinfo->second.can_channel(AluOp::t, s_eg_t_slot_handling)) {
|
||||
std::cerr << *instr << ": t-slot not supported ("<< s_eg_t_slot_handling << ")\n";
|
||||
if (!opinfo->second.can_channel(AluOp::t, s_eg_t_slot_handling))
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
/* if we schedule a non-trans instr into the trans slot, we have to make
|
||||
* sure that the corresponding vector slot is already occupied, otherwise
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue