aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_vec4_live_variables.h
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2014-10-29 13:35:16 -0700
committerMatt Turner <[email protected]>2014-12-01 16:42:13 -0800
commit13f660158573846d6b1bc30ed4c61d97405bea58 (patch)
tree4b417a2e90a949fb956f8baaf60df3c998dec1af /src/mesa/drivers/dri/i965/brw_vec4_live_variables.h
parenta50915984fe1205a3479cc8a5d07a8b3bde7d6bc (diff)
i965: Use local pointer to block_data in live intervals.
The next patch will be simplified because of this, and makes reading the code a lot easier. Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vec4_live_variables.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_vec4_live_variables.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4_live_variables.h b/src/mesa/drivers/dri/i965/brw_vec4_live_variables.h
index 03cc813782e..6f736be6b86 100644
--- a/src/mesa/drivers/dri/i965/brw_vec4_live_variables.h
+++ b/src/mesa/drivers/dri/i965/brw_vec4_live_variables.h
@@ -62,7 +62,7 @@ public:
int bitset_words;
/** Per-basic-block information on live variables */
- struct block_data *bd;
+ struct block_data *block_data;
protected:
void setup_def_use();