diff options
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp b/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp index 424d7b52dcc..0078c871c5d 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp @@ -186,13 +186,12 @@ fs_copy_prop_dataflow::run() /* Update liveout for all blocks. */ for (int b = 0; b < cfg->num_blocks; b++) { for (int i = 0; i < bitset_words; i++) { - BITSET_WORD new_liveout = (bd[b].livein[i] & - ~bd[b].kill[i] & - ~bd[b].liveout[i]); - if (new_liveout) { - bd[b].liveout[i] |= new_liveout; + const BITSET_WORD old_liveout = bd[b].liveout[i]; + + bd[b].liveout[i] |= bd[b].livein[i] & ~bd[b].kill[i]; + + if (old_liveout != bd[b].liveout[i]) progress = true; - } } } |