From: Vinson Lee Date: Tue, 19 Oct 2010 07:07:22 +0000 (-0700) Subject: r300/compiler: Remove unused variable. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f36a6420305ff57db542eec611462a71858f128d;p=mesa.git r300/compiler: Remove unused variable. --- diff --git a/src/mesa/drivers/dri/r300/compiler/radeon_compiler.c b/src/mesa/drivers/dri/r300/compiler/radeon_compiler.c index 125d64e6497..4286baed0c6 100644 --- a/src/mesa/drivers/dri/r300/compiler/radeon_compiler.c +++ b/src/mesa/drivers/dri/r300/compiler/radeon_compiler.c @@ -364,7 +364,7 @@ static void reg_count_callback(void * userdata, struct rc_instruction * inst, static void print_stats(struct radeon_compiler * c) { struct rc_instruction * tmp; - unsigned i, max_reg, insts, fc, tex, alpha, rgb, presub; + unsigned max_reg, insts, fc, tex, alpha, rgb, presub; max_reg = insts = fc = tex = alpha = rgb = presub = 0; for(tmp = c->Program.Instructions.Next; tmp != &c->Program.Instructions; tmp = tmp->Next){