From c11c704f8a3c35b64d2e2eddc49805222c4f2e57 Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Thu, 30 Apr 2026 18:49:08 +0200 Subject: [PATCH] r600/sfn: drop unused literals tracking in assembler Signed-off-by: Gert Wollny Assisted-by: Copilot (auto mode) Part-of: --- src/gallium/drivers/r600/sfn/sfn_assembler.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/gallium/drivers/r600/sfn/sfn_assembler.cpp b/src/gallium/drivers/r600/sfn/sfn_assembler.cpp index 4d60b79e667..664c1559526 100644 --- a/src/gallium/drivers/r600/sfn/sfn_assembler.cpp +++ b/src/gallium/drivers/r600/sfn/sfn_assembler.cpp @@ -93,8 +93,7 @@ public: bool ps_alpha_to_one; bool ps_alpha_to_one_and_coverage; /* End initialized in constructor */ - - std::set m_nliterals_in_group; + std::set vtx_fetch_results; std::set tex_fetch_results; @@ -336,8 +335,6 @@ AssemblerVisitor::emit_alu_op(const AluInstr& ai) sfn_log << SfnLog::assembly << " Current address register is " << *m_last_addr << "\n"; - if (alu.last) - m_nliterals_in_group.clear(); m_result = !r600_bytecode_add_alu(&m_bc, &alu);