diff options
author | Matt Turner <[email protected]> | 2014-09-01 10:58:11 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-09-24 09:42:46 -0700 |
commit | a4fb8897a2bd00eefa8a503ec17d45e791bced91 (patch) | |
tree | 2f11f06d9b31e43a464bedf5449aaf693254c9d7 /src/mesa/drivers/dri/i965/brw_vec4_live_variables.cpp | |
parent | 072ea414d04f1b9a7bf06a00b9011e8ad521c878 (diff) |
i965: Remove now unneeded calls to calculate_cfg().
Now that nothing invalidates the CFG, we can calculate_cfg() immediately
after emit_fb_writes()/emit_thread_end() and never again.
Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vec4_live_variables.cpp')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vec4_live_variables.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4_live_variables.cpp b/src/mesa/drivers/dri/i965/brw_vec4_live_variables.cpp index 268617401d5..5b7acf4de65 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4_live_variables.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4_live_variables.cpp @@ -247,7 +247,6 @@ vec4_visitor::calculate_live_intervals() * The control flow-aware analysis was done at a channel level, while at * this point we're distilling it down to vgrfs. */ - calculate_cfg(); vec4_live_variables livevars(this, cfg); foreach_block (block, cfg) { |