From: Brian Paul Date: Thu, 15 Jan 2009 14:04:36 +0000 (-0700) Subject: glsl: move declaration before code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e1ba29ea19fd99d16b63cc34bc2aa1e4a26c5a25;p=mesa.git glsl: move declaration before code --- diff --git a/src/mesa/shader/slang/slang_compile.c b/src/mesa/shader/slang/slang_compile.c index 04fa2e0f931..818b90b7a86 100644 --- a/src/mesa/shader/slang/slang_compile.c +++ b/src/mesa/shader/slang/slang_compile.c @@ -1471,9 +1471,9 @@ parse_expression(slang_parse_ctx * C, slang_output_ctx * O, RETURN0; } else { - array_constructor = GL_TRUE; /* parse the array constructor size */ slang_operation array_size; + array_constructor = GL_TRUE; slang_operation_construct(&array_size); if (!parse_expression(C, O, &array_size)) { slang_operation_destruct(&array_size);