i915g: move code after declaration

This commit is contained in:
Brian Paul 2011-07-06 17:18:32 -06:00
parent d32d4f780f
commit 7a10976adb
1 changed files with 2 additions and 1 deletions

View File

@ -167,10 +167,11 @@ static void copy_token(union i915_full_token* o, union tgsi_full_token* i)
struct i915_token_list* i915_optimize(const struct tgsi_token *tokens)
{
struct i915_token_list *out_tokens = MALLOC(sizeof(struct i915_token_list));
out_tokens->NumTokens = 0;
struct tgsi_parse_context parse;
int i = 0;
out_tokens->NumTokens = 0;
/* Count the tokens */
tgsi_parse_init( &parse, tokens );
while( !tgsi_parse_end_of_tokens( &parse ) ) {