aboutsummaryrefslogtreecommitdiffstats
path: root/src/intel/compiler/brw_fs_live_variables.h
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2020-04-13 16:55:43 -0700
committerIan Romanick <[email protected]>2020-04-17 08:21:40 -0700
commitc836295dfdeafe9f2a731c4dcd75d59c4494bcf3 (patch)
treef5060d96b088c824577c24faee27f6a6b3308c09 /src/intel/compiler/brw_fs_live_variables.h
parent62f70a353f86e5ebd2889feed8d1223d11827312 (diff)
intel/compiler: Silence unused parameter warning in fs_live_variables::setup_one_read
src/intel/compiler/brw_fs_live_variables.cpp: In member function ‘void brw::fs_live_variables::setup_one_read(brw::fs_live_variables::block_data*, fs_inst*, int, const fs_reg&)’: src/intel/compiler/brw_fs_live_variables.cpp:56:67: warning: unused parameter ‘inst’ [-Wunused-parameter] 56 | fs_live_variables::setup_one_read(struct block_data *bd, fs_inst *inst, | ~~~~~~~~~^~~~ Reviewed-by: Matt Turner <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4582>
Diffstat (limited to 'src/intel/compiler/brw_fs_live_variables.h')
-rw-r--r--src/intel/compiler/brw_fs_live_variables.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/intel/compiler/brw_fs_live_variables.h b/src/intel/compiler/brw_fs_live_variables.h
index 5827fe0fd7d..5661c102eeb 100644
--- a/src/intel/compiler/brw_fs_live_variables.h
+++ b/src/intel/compiler/brw_fs_live_variables.h
@@ -132,8 +132,7 @@ public:
protected:
void setup_def_use();
- void setup_one_read(struct block_data *bd, fs_inst *inst, int ip,
- const fs_reg &reg);
+ void setup_one_read(struct block_data *bd, int ip, const fs_reg &reg);
void setup_one_write(struct block_data *bd, fs_inst *inst, int ip,
const fs_reg &reg);
void compute_live_variables();