From: Brian Paul Date: Fri, 27 May 2016 00:57:51 +0000 (-0600) Subject: svga: use MAYBE_UNUSED to silence release-build warnings X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9be122e9b0fc6b0a0651601556d0ae2be9a159ee;p=mesa.git svga: use MAYBE_UNUSED to silence release-build warnings Signed-off-by: Brian Paul --- diff --git a/src/gallium/drivers/svga/svga_draw.c b/src/gallium/drivers/svga/svga_draw.c index 0b9ea889afa..f314d556063 100644 --- a/src/gallium/drivers/svga/svga_draw.c +++ b/src/gallium/drivers/svga/svga_draw.c @@ -769,17 +769,14 @@ check_draw_params(struct svga_hwtnl *hwtnl, assert(range->indexWidth == range->indexArray.stride); if (ib) { - unsigned size = ib->width0; - unsigned offset = range->indexArray.offset; - unsigned stride = range->indexArray.stride; - unsigned count; + MAYBE_UNUSED unsigned size = ib->width0; + MAYBE_UNUSED unsigned offset = range->indexArray.offset; + MAYBE_UNUSED unsigned stride = range->indexArray.stride; + MAYBE_UNUSED unsigned count; assert(size); assert(offset < size); assert(stride); - (void) size; - (void) offset; - (void) stride; switch (range->primType) { case SVGA3D_PRIMITIVE_POINTLIST: