From: Ian Romanick Date: Wed, 2 Jul 2014 17:30:19 +0000 (-0700) Subject: i965: Silence many unused parameter warnings X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1946612b7d6e802f63f59d1775a2e96c46279b87;p=mesa.git i965: Silence many unused parameter warnings brw_inst.h: In function 'brw_inst_set_src1_vstride': brw_inst.h:118:76: warning: unused parameter 'brw' [-Wunused-parameter] Signed-off-by: Ian Romanick Reviewed-by: Matt Turner --- diff --git a/src/mesa/drivers/dri/i965/brw_inst.h b/src/mesa/drivers/dri/i965/brw_inst.h index e880c9f497e..719ac8e0985 100644 --- a/src/mesa/drivers/dri/i965/brw_inst.h +++ b/src/mesa/drivers/dri/i965/brw_inst.h @@ -56,6 +56,7 @@ brw_inst_set_##name(const struct brw_context *brw, \ brw_inst *inst, uint64_t v) \ { \ assert(assertions); \ + (void) brw; \ brw_inst_set_bits(inst, high, low, v); \ } \ static inline uint64_t \ @@ -63,6 +64,7 @@ brw_inst_##name(const struct brw_context *brw, \ brw_inst *inst) \ { \ assert(assertions); \ + (void) brw; \ return brw_inst_bits(inst, high, low); \ } @@ -306,12 +308,14 @@ brw_inst_set_##name(const struct brw_context *brw, brw_inst *inst, int16_t v) \ assert(assertions); \ assert(v <= (1 << 16) - 1); \ assert(v > -(1 << 16)); \ + (void) brw; \ brw_inst_set_bits(inst, high, low, (uint16_t) v); \ } \ static inline int16_t \ brw_inst_##name(const struct brw_context *brw, brw_inst *inst) \ { \ assert(assertions); \ + (void) brw; \ return brw_inst_bits(inst, high, low); \ } @@ -544,12 +548,14 @@ F(pi_message_data, MD(7), MD(0)) static inline int brw_inst_imm_d(const struct brw_context *brw, brw_inst *insn) { + (void) brw; return brw_inst_bits(insn, 127, 96); } static inline unsigned brw_inst_imm_ud(const struct brw_context *brw, brw_inst *insn) { + (void) brw; return brw_inst_bits(insn, 127, 96); } @@ -557,6 +563,7 @@ static inline float brw_inst_imm_f(const struct brw_context *brw, brw_inst *insn) { fi_type ft; + (void) brw; ft.u = brw_inst_bits(insn, 127, 96); return ft.f; } @@ -565,6 +572,7 @@ static inline void brw_inst_set_imm_d(const struct brw_context *brw, brw_inst *insn, int value) { + (void) brw; return brw_inst_set_bits(insn, 127, 96, value); } @@ -572,6 +580,7 @@ static inline void brw_inst_set_imm_ud(const struct brw_context *brw, brw_inst *insn, unsigned value) { + (void) brw; return brw_inst_set_bits(insn, 127, 96, value); } @@ -580,6 +589,7 @@ brw_inst_set_imm_f(const struct brw_context *brw, brw_inst *insn, float value) { fi_type ft; + (void) brw; ft.f = value; brw_inst_set_bits(insn, 127, 96, ft.u); }