From: Brian Paul Date: Thu, 15 Jan 2009 14:04:36 +0000 (-0700) Subject: glsl: move declaration before code X-Git-Tag: 062012170305~17671^2~269 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e1ba29ea19fd99d16b63cc34bc2aa1e4a26c5a25;p=profile%2Fivi%2Fmesa.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 04fa2e0..818b90b 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);