summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2012-11-02 21:24:05 -0700
committerKenneth Graunke <kenneth@whitecape.org>2012-11-15 11:14:50 -0800
commitd010e70a07ab4a0b24aad8c9693a7f9c680d6164 (patch)
treefc81f2138014f3cb4abeeaf545b4864b2975fcaf
parentb02492fd33cab35515ea3daed7d03475f941ecd2 (diff)
i965/fs: Don't calculate_live_intervals() in opt_algebraic().
There's no point: opt_algebraic() doesn't use any liveness information. Reviewed-by: Eric Anholt <eric@anholt.net>
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp
index dc2e5a6772..f25fd16ffe 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -1311,8 +1311,6 @@ fs_visitor::opt_algebraic()
{
bool progress = false;
- calculate_live_intervals();
-
foreach_list(node, &this->instructions) {
fs_inst *inst = (fs_inst *)node;