summaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2014-07-02 10:30:19 -0700
committerIan Romanick <[email protected]>2014-07-19 15:03:49 -0700
commit1946612b7d6e802f63f59d1775a2e96c46279b87 (patch)
tree9759b8aa2d39ef8b9d2112950f9d80dff0e4c9ea /src/mesa
parentf6fc80734533140a69b30361fe0d4773a03515db (diff)
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 <[email protected]> Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/drivers/dri/i965/brw_inst.h10
1 files changed, 10 insertions, 0 deletions
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);
}