From 83933606596a0197e6cd1740cb439eaf055e544d Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Mon, 4 Jun 2012 15:44:58 -0700 Subject: [PATCH] i965/fs: Remove a dead member from live variables analysis. Reviewed-by: Kenneth Graunke --- src/mesa/drivers/dri/i965/brw_fs_live_variables.cpp | 1 - src/mesa/drivers/dri/i965/brw_fs_live_variables.h | 5 ----- 2 files changed, 6 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_fs_live_variables.cpp b/src/mesa/drivers/dri/i965/brw_fs_live_variables.cpp index 40877c93374..16480ad8a90 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_live_variables.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_live_variables.cpp @@ -139,7 +139,6 @@ fs_live_variables::fs_live_variables(fs_visitor *v, fs_cfg *cfg) num_vars = v->virtual_grf_count; bd = rzalloc_array(mem_ctx, struct block_data, cfg->num_blocks); - vars = rzalloc_array(mem_ctx, struct var, num_vars); for (int i = 0; i < cfg->num_blocks; i++) { bd[i].def = rzalloc_array(mem_ctx, bool, num_vars); diff --git a/src/mesa/drivers/dri/i965/brw_fs_live_variables.h b/src/mesa/drivers/dri/i965/brw_fs_live_variables.h index 17e75531523..065f3132060 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_live_variables.h +++ b/src/mesa/drivers/dri/i965/brw_fs_live_variables.h @@ -72,11 +72,6 @@ public: fs_cfg *cfg; void *mem_ctx; - struct var { - int blocknum; - int instnum; - fs_inst *inst; - } *vars; int num_vars; /** Per-basic-block information on live variables */ -- 2.30.2