From b32d3c9251e18c77b4d58db61b43797ffb7b05cf Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Wed, 3 Jan 2024 16:31:23 +1000 Subject: [PATCH] intel/compiler: fix release build unused variable. This is only used in an assert. Fixes: 158ac265dfd0 ("intel/fs: Make helpers for saving/restoring instruction order") --- src/intel/compiler/brw_fs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/compiler/brw_fs.cpp b/src/intel/compiler/brw_fs.cpp index 696b5db8d9d..aa01a2241ce 100644 --- a/src/intel/compiler/brw_fs.cpp +++ b/src/intel/compiler/brw_fs.cpp @@ -6834,7 +6834,7 @@ save_instruction_order(const struct cfg_t *cfg) static void restore_instruction_order(struct cfg_t *cfg, fs_inst **inst_arr) { - int num_insts = cfg->last_block()->end_ip + 1; + ASSERTED int num_insts = cfg->last_block()->end_ip + 1; int ip = 0; foreach_block (block, cfg) { -- 2.43.0