i965/fs: Invalidate live intervals after copy propagation.

For copy propgation, we've dropped the use of a GRF in favor of a
(probably later) use of a different GRF.  This definitely requires
invalidating intervals.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Eric Anholt
2012-06-05 13:14:38 -07:00
parent 2343fe9a5d
commit 1e28f55ab7
@@ -160,5 +160,8 @@ fs_visitor::opt_copy_propagate()
ralloc_free(mem_ctx);
if (progress)
live_intervals_valid = false;
return progress;
}