diff options
author | Matt Turner <[email protected]> | 2014-09-01 10:54:00 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-09-24 09:42:46 -0700 |
commit | 072ea414d04f1b9a7bf06a00b9011e8ad521c878 (patch) | |
tree | 750c564d9edf454637e92147642f2f6428374879 /src/mesa/drivers/dri/i965/brw_fs_saturate_propagation.cpp | |
parent | 9e28bb863c1a7ea90c251a3ac94beda5cbe4f7e5 (diff) |
i965: Remove cfg-invalidating parameter from invalidate_live_intervals.
Everything has been converted to preserve the CFG.
Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs_saturate_propagation.cpp')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_saturate_propagation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_saturate_propagation.cpp b/src/mesa/drivers/dri/i965/brw_fs_saturate_propagation.cpp index 3412ce0a284..d65b2f14e13 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_saturate_propagation.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_saturate_propagation.cpp @@ -100,7 +100,7 @@ fs_visitor::opt_saturate_propagation() } if (progress) - invalidate_live_intervals(false); + invalidate_live_intervals(); return progress; } |