From: Kenneth Graunke Date: Fri, 9 Nov 2012 08:38:37 +0000 (-0800) Subject: i965/fs: Remove bblock field of fs_visitor. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=eec5669bc9fd2fdc43fdb4ffd64e427e23a9f250;p=mesa.git 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 --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h index 48451767c32..9fc05eab2d2 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);