Mesa (master): i965/sched: Make 'time' a local variable.

Matt Turner mattst88 at kemper.freedesktop.org
Tue Nov 29 19:58:15 UTC 2016


Module: Mesa
Branch: master
Commit: cab0952d4b8bf633658d8ecf6539a3ec4f62b9c7
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=cab0952d4b8bf633658d8ecf6539a3ec4f62b9c7

Author: Matt Turner <mattst88 at gmail.com>
Date:   Mon Nov 28 13:29:45 2016 -0800

i965/sched: Make 'time' a local variable.

Reviewed-by: Francisco Jerez <currojerez at riseup.net>

---

 src/mesa/drivers/dri/i965/brw_schedule_instructions.cpp | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/brw_schedule_instructions.cpp b/src/mesa/drivers/dri/i965/brw_schedule_instructions.cpp
index 28d1e90..9d7ba3b 100644
--- a/src/mesa/drivers/dri/i965/brw_schedule_instructions.cpp
+++ b/src/mesa/drivers/dri/i965/brw_schedule_instructions.cpp
@@ -442,7 +442,6 @@ public:
       this->instructions_to_schedule = 0;
       this->post_reg_alloc = (mode == SCHEDULE_POST);
       this->mode = mode;
-      this->time = 0;
       if (!post_reg_alloc) {
          this->reg_pressure_in = rzalloc_array(mem_ctx, int, block_count);
 
@@ -514,7 +513,6 @@ public:
    int instructions_to_schedule;
    int grf_count;
    int hw_reg_count;
-   int time;
    int reg_pressure;
    int block_idx;
    exec_list instructions;
@@ -1574,7 +1572,7 @@ void
 instruction_scheduler::schedule_instructions(bblock_t *block)
 {
    const struct gen_device_info *devinfo = bs->devinfo;
-   time = 0;
+   int time = 0;
    if (!post_reg_alloc)
       reg_pressure = reg_pressure_in[block->num];
    block_idx = block->num;




More information about the mesa-commit mailing list