From db48dcb4f3419fb2bf2d49c0bd04a38605d2e9a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Briano?= Date: Mon, 14 Feb 2022 15:57:26 -0800 Subject: [PATCH] intel/compiler: remove what looks like a bad rebase This bit in the compiler looks like it was added by accident on one of the latest versions of the original commit, but it clearly doesn't belong there. Fixes: 03e1e19246d ("anv: Refactor descriptor copy") Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/compiler/brw_fs.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/intel/compiler/brw_fs.cpp b/src/intel/compiler/brw_fs.cpp index 10239f21f85..cc8d49d0fe9 100644 --- a/src/intel/compiler/brw_fs.cpp +++ b/src/intel/compiler/brw_fs.cpp @@ -5972,14 +5972,6 @@ lower_lsc_surface_logical_send(const fs_builder &bld, fs_inst *inst) false /* transpose */, LSC_CACHE_STORE_L1STATE_L3MOCS, false /* has_dest */); - case SHADER_OPCODE_DWORD_SCATTERED_READ_LOGICAL: - inst->desc = lsc_msg_desc(devinfo, LSC_OP_ATOMIC_LOAD, inst->exec_size, - surf_type, LSC_ADDR_SIZE_A32, - 1 /* num_coordinates */, - LSC_DATA_SIZE_D32, arg.ud /* num_channels */, - false /* transpose */, - LSC_CACHE_LOAD_L1STATE_L3MOCS, - true /* has_dest */); break; default: unreachable("Unknown surface logical instruction");