From ebe395608ad152ed5e270dd604e21a58f88da64f Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Mon, 13 Oct 2025 17:22:05 +0200 Subject: [PATCH] r600/sfn: Silence warning about unused parameter Signed-off-by: Gert Wollny Part-of: --- src/gallium/drivers/r600/sfn/sfn_instr_alu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/r600/sfn/sfn_instr_alu.cpp b/src/gallium/drivers/r600/sfn/sfn_instr_alu.cpp index 263b924ce56..cfaf86e1414 100644 --- a/src/gallium/drivers/r600/sfn/sfn_instr_alu.cpp +++ b/src/gallium/drivers/r600/sfn/sfn_instr_alu.cpp @@ -664,7 +664,7 @@ uint8_t AluInstr::allowed_src_chan_mask() const } bool -AluInstr::replace_dest(PRegister new_dest, AluInstr *move_instr) +AluInstr::replace_dest(PRegister new_dest, UNUSED AluInstr *move_instr) { if (m_dest->equal_to(*new_dest)) return false;