From 22165defb55f8c12f5af92d48196d956857b2c3a Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Mon, 4 Aug 2025 14:01:49 -0700 Subject: [PATCH] brw: Drop interlock and memory fence logical opcodes from is_payload() These are lowered to sends prior to any callers of this helper. Reviewed-by: Caio Oliveira Part-of: --- src/intel/compiler/brw_inst.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/intel/compiler/brw_inst.cpp b/src/intel/compiler/brw_inst.cpp index a3ea849f5a1..6503e8fca74 100644 --- a/src/intel/compiler/brw_inst.cpp +++ b/src/intel/compiler/brw_inst.cpp @@ -230,8 +230,6 @@ bool brw_inst::is_payload(unsigned arg) const { switch (opcode) { - case SHADER_OPCODE_INTERLOCK: - case SHADER_OPCODE_MEMORY_FENCE: case SHADER_OPCODE_BARRIER: return arg == 0;