mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
i965/fs: Invalidate live intervals in opt_cse, not _local.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
bdbaa9ab5b
commit
1ca6b5d2e8
1 changed files with 3 additions and 3 deletions
|
|
@ -307,9 +307,6 @@ fs_visitor::opt_cse_local(bblock_t *block)
|
|||
|
||||
ralloc_free(cse_ctx);
|
||||
|
||||
if (progress)
|
||||
invalidate_live_intervals();
|
||||
|
||||
return progress;
|
||||
}
|
||||
|
||||
|
|
@ -327,5 +324,8 @@ fs_visitor::opt_cse()
|
|||
progress = opt_cse_local(block) || progress;
|
||||
}
|
||||
|
||||
if (progress)
|
||||
invalidate_live_intervals();
|
||||
|
||||
return progress;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue