From: Vinson Lee Date: Wed, 25 Aug 2010 01:32:51 +0000 (-0700) Subject: r600: Remove unused variable. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3db9d4b2534288931a80137434bcf8ee02b7253f;p=mesa.git r600: Remove unused variable. Fixes the following GCC warning. r600_emit.c In function 'r600AllocShaderConsts': r600_emit.c:59: warning: unused variable 'out' --- diff --git a/src/mesa/drivers/dri/r600/r600_emit.c b/src/mesa/drivers/dri/r600/r600_emit.c index 4814cb1453c..a840106c144 100644 --- a/src/mesa/drivers/dri/r600/r600_emit.c +++ b/src/mesa/drivers/dri/r600/r600_emit.c @@ -56,7 +56,6 @@ GLboolean r600AllocShaderConsts(GLcontext * ctx, { radeonContextPtr radeonctx = RADEON_CONTEXT(ctx); struct radeon_bo * pbo; - uint32_t *out; if(sizeinBYTE < 64) /* SQ_ALU_CONST_BUFFER_SIZE need 64 bytes at least to be non 0 */ {