r300/compiler: Remove unused variable.

This commit is contained in:
Vinson Lee 2010-10-19 00:07:22 -07:00
parent f822cc22f2
commit f36a642030

View file

@ -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){