summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2012-11-09 00:38:37 -0800
committerKenneth Graunke <kenneth@whitecape.org>2012-11-15 11:14:43 -0800
commiteec5669bc9fd2fdc43fdb4ffd64e427e23a9f250 (patch)
treed6571318d839f60753cbe814017d8993b96ec1fc
parente7668609a704db1e01af08223d1ba0575f469f79 (diff)
i965/fs: Remove bblock field of fs_visitor.
All users of basic block analysis simply create their own local variables. Nobody uses the visitor-wide field. Reviewed-by: Eric Anholt <eric@anholt.net>
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h
index 48451767c3..9fc05eab2d 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.h
+++ b/src/mesa/drivers/dri/i965/brw_fs.h
@@ -426,8 +426,6 @@ public:
int force_uncompressed_stack;
int force_sechalf_stack;
-
- class bblock_t *bblock;
};
bool brw_do_channel_expressions(struct exec_list *instructions);