vc4: Fix compiler warnings on release builds.

This commit is contained in:
Eric Anholt 2015-07-10 17:00:34 -07:00
parent 1e80c9fab9
commit cd7dd45bfe
4 changed files with 14 additions and 7 deletions

View File

@ -1748,6 +1748,7 @@ ntq_setup_inputs(struct vc4_compile *c)
unsigned loc = var->data.driver_location;
assert(array_len == 1);
(void)array_len;
resize_qreg_array(c, &c->inputs, &c->inputs_array_size,
(loc + 1) * 4);
@ -1782,6 +1783,7 @@ ntq_setup_outputs(struct vc4_compile *c)
unsigned loc = var->data.driver_location * 4;
assert(array_len == 1);
(void)array_len;
/* NIR hack to pass through
* TGSI_PROPERTY_FS_COLOR0_WRITES_ALL_CBUFS */

View File

@ -234,6 +234,7 @@ vc4_generate_code(struct vc4_context *vc4, struct vc4_compile *c)
case QFILE_VPM:
assert((int)qinst->src[i].index >=
last_vpm_read_index);
(void)last_vpm_read_index;
last_vpm_read_index = qinst->src[i].index;
src[i] = qpu_ra(QPU_R_VPM);
break;

View File

@ -23,6 +23,13 @@
#include "vc4_qpu.h"
#ifdef NDEBUG
/* Since most of our code is used in assert()s, don't warn about dead code. */
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
#pragma GCC diagnostic ignored "-Wunused-variable"
#pragma GCC diagnostic ignored "-Wunused-function"
#endif
static bool
writes_reg(uint64_t inst, uint32_t w)
{

View File

@ -127,13 +127,10 @@ vc4_store_utile(void *dst, void *src, uint32_t src_stride, uint32_t cpp)
static void
check_box_utile_alignment(const struct pipe_box *box, int cpp)
{
uint32_t utile_w = vc4_utile_width(cpp);
uint32_t utile_h = vc4_utile_height(cpp);
assert(!(box->x & (utile_w - 1)));
assert(!(box->y & (utile_h - 1)));
assert(!(box->width & (utile_w - 1)));
assert(!(box->height & (utile_h - 1)));
assert(!(box->x & (vc4_utile_width(cpp) - 1)));
assert(!(box->y & (vc4_utile_height(cpp) - 1)));
assert(!(box->width & (vc4_utile_width(cpp) - 1)));
assert(!(box->height & (vc4_utile_height(cpp) - 1)));
}
static void