ARB prog: Update generated files missed on previous two commits
authorIan Romanick <ian.d.romanick@intel.com>
Mon, 27 Jul 2009 19:48:44 +0000 (12:48 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Mon, 27 Jul 2009 19:48:44 +0000 (12:48 -0700)
The changes are, as it turns out, purely cosmetic.

src/mesa/shader/lex.yy.c
src/mesa/shader/program_parse.tab.c

index 120e18eb191fa6b675f5d16d622a90c918f1ac3c..e2b0da9cbea1493017f494144593649292209fd0 100644 (file)
@@ -3521,10 +3521,6 @@ _mesa_program_lexer_ctor(void **scanner, struct asm_parser_state *state,
 void
 _mesa_program_lexer_dtor(void *scanner)
 {
-   /* FINISHME: It's not clear to me whether or not the buffer state returned
-    * FINISHME: by yy_scan_bytes in _mesa_program_lexer_ctor needs to be
-    * FINISHME: explicitly destroyed here or not.
-    */
    yylex_destroy(scanner);
 }
 
index a49cfeb483c8effdb95a49c118a59232245126a8..6ea10f85672689bf1c5d7effebfb769c22039cbe 100644 (file)
@@ -4966,7 +4966,7 @@ _mesa_parse_arb_program(GLcontext *ctx, GLenum target, const GLubyte *str,
 
 
    if (ctx->Program.ErrorPos != -1) {
-     goto error;
+      goto error;
    }
 
    if (! _mesa_layout_parameters(state)) {
@@ -5028,7 +5028,7 @@ error:
    for (sym = state->sym; sym != NULL; sym = temp) {
       temp = sym->next;
 
-      _mesa_free(sym->name);
+      _mesa_free((void *) sym->name);
       _mesa_free(sym);
    }
    state->sym = NULL;