From 33ca04eb63829d80494f17bad064e25d65850ea3 Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Mon, 1 Aug 2022 19:55:29 +0200 Subject: [PATCH] r600/sfn: remove leftover debug output Fixes: 3c7368de56c32fb399306e888bc7a61ff721f3b6 r600/sfn: Handle slot differences between pre-EG and EG Signed-off-by: Gert Wollny Part-of: --- src/gallium/drivers/r600/sfn/sfn_instr_alugroup.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/gallium/drivers/r600/sfn/sfn_instr_alugroup.cpp b/src/gallium/drivers/r600/sfn/sfn_instr_alugroup.cpp index 8ac9ca645b2..65a31be2c06 100644 --- a/src/gallium/drivers/r600/sfn/sfn_instr_alugroup.cpp +++ b/src/gallium/drivers/r600/sfn/sfn_instr_alugroup.cpp @@ -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