From 6229d40fbf421b09c64dcbd2ed02fa2507d4ec9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20=C5=9Alusarz?= Date: Thu, 30 Sep 2021 13:32:20 +0200 Subject: [PATCH] intel/compiler: drop redundant likely's around INTEL_DEBUG MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit They are not needed since 4015e1876a77162e3444eeaa29a0dfbc47efe90e. Signed-off-by: Marcin Ĺšlusarz Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/compiler/brw_fs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/intel/compiler/brw_fs.cpp b/src/intel/compiler/brw_fs.cpp index ec251b071f7..5cb72f86d67 100644 --- a/src/intel/compiler/brw_fs.cpp +++ b/src/intel/compiler/brw_fs.cpp @@ -10431,7 +10431,7 @@ compile_single_bs(const struct brw_compiler *compiler, void *log_data, bool has_spilled = false; uint8_t simd_size = 0; - if (likely(!(INTEL_DEBUG & DEBUG_NO8))) { + if (!(INTEL_DEBUG & DEBUG_NO8)) { v8 = new fs_visitor(compiler, log_data, mem_ctx, &key->base, &prog_data->base, shader, 8, -1 /* shader time */, debug_enabled); @@ -10449,7 +10449,7 @@ compile_single_bs(const struct brw_compiler *compiler, void *log_data, } } - if (!has_spilled && likely(!(INTEL_DEBUG & DEBUG_NO16))) { + if (!has_spilled && !(INTEL_DEBUG & DEBUG_NO16)) { v16 = new fs_visitor(compiler, log_data, mem_ctx, &key->base, &prog_data->base, shader, 16, -1 /* shader time */, debug_enabled);