mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-17 14:50:45 +02:00
vc4: Clean up release build warnings using MAYBE_UNUSED.
These variables are all used in an assert(), so release builds see no usages.
This commit is contained in:
parent
743dcdd936
commit
45b0172693
2 changed files with 5 additions and 6 deletions
|
|
@ -1708,8 +1708,7 @@ ntq_emit_ssa_undef(struct vc4_compile *c, nir_ssa_undef_instr *instr)
|
|||
static void
|
||||
ntq_emit_color_read(struct vc4_compile *c, nir_intrinsic_instr *instr)
|
||||
{
|
||||
nir_const_value *const_offset = nir_src_as_const_value(instr->src[0]);
|
||||
assert(const_offset->u32[0] == 0);
|
||||
assert(nir_src_as_const_value(instr->src[0])->u32[0] == 0);
|
||||
|
||||
/* Reads of the per-sample color need to be done in
|
||||
* order.
|
||||
|
|
|
|||
|
|
@ -204,9 +204,9 @@ fixup_raddr_conflict(struct qblock *block,
|
|||
static void
|
||||
set_last_dst_pack(struct qblock *block, struct qinst *inst)
|
||||
{
|
||||
bool had_pm = *last_inst(block) & QPU_PM;
|
||||
bool had_ws = *last_inst(block) & QPU_WS;
|
||||
uint32_t unpack = QPU_GET_FIELD(*last_inst(block), QPU_UNPACK);
|
||||
MAYBE_UNUSED bool had_pm = *last_inst(block) & QPU_PM;
|
||||
MAYBE_UNUSED bool had_ws = *last_inst(block) & QPU_WS;
|
||||
MAYBE_UNUSED uint32_t unpack = QPU_GET_FIELD(*last_inst(block), QPU_UNPACK);
|
||||
|
||||
if (!inst->dst.pack)
|
||||
return;
|
||||
|
|
@ -419,7 +419,7 @@ vc4_generate_code_block(struct vc4_compile *c,
|
|||
break;
|
||||
}
|
||||
|
||||
bool handled_qinst_cond = false;
|
||||
MAYBE_UNUSED bool handled_qinst_cond = false;
|
||||
|
||||
switch (qinst->op) {
|
||||
case QOP_RCP:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue