mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 04:58:05 +02:00
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 commit37366fef68)
This commit is contained in:
parent
548cc0dd8c
commit
4ea8f20b19
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue