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>
(cherry picked from commit 37366fef68)
This commit is contained in:
Dave Airlie 2024-01-03 16:31:23 +10:00 committed by Eric Engestrom
parent 548cc0dd8c
commit 4ea8f20b19
2 changed files with 2 additions and 2 deletions

View file

@ -354,7 +354,7 @@
"description": "intel/compiler: fix release build unused variable.",
"nominated": true,
"nomination_type": 1,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": "158ac265dfd0647830e8bca3e7fecc92e7fa421b",
"notes": null

View file

@ -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) {