i965/fs: Invalidate live intervals in opt_cse, not _local.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Matt Turner 2014-07-11 20:37:04 -07:00
parent bdbaa9ab5b
commit 1ca6b5d2e8

View file

@ -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;
}