From: Matt Turner Date: Sat, 12 Jul 2014 03:38:09 +0000 (-0700) Subject: i965/vec4: Invalidate live intervals in opt_cse, not _local. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=130c99ca1538dc6320c6ed14ac8aff84b8e6b135;p=mesa.git i965/vec4: Invalidate live intervals in opt_cse, not _local. Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/i965/brw_vec4_cse.cpp b/src/mesa/drivers/dri/i965/brw_vec4_cse.cpp index 7bb016dcce2..83c7eb83eb2 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4_cse.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4_cse.cpp @@ -244,9 +244,6 @@ vec4_visitor::opt_cse_local(bblock_t *block) ralloc_free(cse_ctx); - if (progress) - invalidate_live_intervals(); - return progress; } @@ -265,5 +262,8 @@ vec4_visitor::opt_cse() progress = opt_cse_local(block) || progress; } + if (progress) + invalidate_live_intervals(); + return progress; }