From: Vinson Lee Date: Thu, 27 Aug 2009 13:40:37 +0000 (-0600) Subject: mesa: move decls before code X-Git-Tag: 062012170305~16770 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0dd08a9e15192dec7fd97febdbb39ce25a08a525;p=profile%2Fivi%2Fmesa.git mesa: move decls before code --- diff --git a/src/mesa/shader/symbol_table.c b/src/mesa/shader/symbol_table.c index 71ce128..7a9aa7b 100644 --- a/src/mesa/shader/symbol_table.c +++ b/src/mesa/shader/symbol_table.c @@ -287,10 +287,12 @@ _mesa_symbol_table_add_symbol(struct _mesa_symbol_table *table, int name_space, const char *name, void *declaration) { + struct symbol_header *hdr; + struct symbol *sym; + check_symbol_table(table); - struct symbol_header *hdr = find_symbol(table, name); - struct symbol *sym; + hdr = find_symbol(table, name); check_symbol_table(table);