Mesa (gallium-0.1): tgsi: fix incomplete rename of loop counter variable

Keith Whitwell keithw at kemper.freedesktop.org
Tue Dec 23 18:17:26 UTC 2008


Module: Mesa
Branch: gallium-0.1
Commit: fc4cea08fe8320438c72de7f4af2d7091681dca3
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=fc4cea08fe8320438c72de7f4af2d7091681dca3

Author: Keith Whitwell <keith at tungstengraphics.com>
Date:   Tue Dec 23 18:16:49 2008 +0000

tgsi: fix incomplete rename of loop counter variable

---

 src/gallium/auxiliary/tgsi/tgsi_scan.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.c b/src/gallium/auxiliary/tgsi/tgsi_scan.c
index cfc7ea8..1239f6c 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;




More information about the mesa-commit mailing list