From: Keith Whitwell Date: Tue, 23 Dec 2008 18:16:49 +0000 (+0000) Subject: tgsi: fix incomplete rename of loop counter variable X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fc4cea08fe8320438c72de7f4af2d7091681dca3;p=mesa.git tgsi: fix incomplete rename of loop counter variable --- diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.c b/src/gallium/auxiliary/tgsi/tgsi_scan.c index cfc7ea8e898..1239f6c0765 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_scan.c +++ b/src/gallium/auxiliary/tgsi/tgsi_scan.c @@ -124,7 +124,7 @@ tgsi_scan_shader(const struct tgsi_token *tokens, /* only first 32 regs will appear in this bitfield */ info->file_mask[file] |= (1 << reg); info->file_count[file]++; - info->file_max[file] = MAX2(info->file_max[file], (int)i); + info->file_max[file] = MAX2(info->file_max[file], (int)reg); if (file == TGSI_FILE_INPUT) { info->input_semantic_name[reg] = (ubyte)fulldecl->Semantic.SemanticName;