i965/fs: Invalidate live intervals in opt_cse, not _local.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user