intel/compiler: fix release build unused variable.
This is only used in an assert.
Fixes: 158ac265df ("intel/fs: Make helpers for saving/restoring instruction order")
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26863>
This commit is contained in:
@@ -6634,7 +6634,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) {
|
||||
|
||||
Reference in New Issue
Block a user