mesa: Move var declaration to top of scope.
authorJosé Fonseca <jfonseca@vmware.com>
Tue, 6 Jan 2009 19:18:13 +0000 (19:18 +0000)
committerJosé Fonseca <jfonseca@vmware.com>
Thu, 8 Jan 2009 12:05:22 +0000 (12:05 +0000)
src/mesa/shader/slang/slang_compile.c

index d8aefd649503509e2510ac72d307063cefc93165..b8044b10600e479b1c55f8d026212ce33dc4f5e6 100644 (file)
@@ -1470,9 +1470,9 @@ parse_expression(slang_parse_ctx * C, slang_output_ctx * O,
                   RETURN0;
                }
                else {
+                  slang_operation array_size;
                   array_constructor = GL_TRUE;
                   /* parse the array constructor size */
-                  slang_operation array_size;
                   slang_operation_construct(&array_size);
                   if (!parse_expression(C, O, &array_size)) {
                      slang_operation_destruct(&array_size);