grammar: Remove grammar_check().
authorMichal Krol <michal@vmware.com>
Mon, 7 Sep 2009 08:55:45 +0000 (10:55 +0200)
committerMichal Krol <michal@vmware.com>
Mon, 7 Sep 2009 08:55:45 +0000 (10:55 +0200)
src/mesa/shader/grammar/grammar.c
src/mesa/shader/grammar/grammar.h

index a9775961d3a6577654cc072c8f3e423847e578e6..f1e3b837c44952a1b44558d218a041fb6f7dfe20 100644 (file)
@@ -3091,11 +3091,6 @@ static int _grammar_check (grammar id, const byte *text, byte **prod, unsigned i
     return 1;
 }
 
-int grammar_check (grammar id, const byte *text, byte **prod, unsigned int *size)
-{
-    return _grammar_check (id, text, prod, size, 0, 0);
-}
-
 int grammar_fast_check (grammar id, const byte *text, byte **prod, unsigned int *size,
     unsigned int estimate_prod_size)
 {
index 591e38aefa68d2e0c9c4a66b98f944e47c11e8e3..151b5f082b97bad27def372a02a78ff5a02e9c3a 100644 (file)
@@ -61,19 +61,11 @@ grammar grammar_load_from_text (const byte *text);
 int grammar_set_reg8 (grammar id, const byte *name, byte value);
 
 /*
-    this function is obsolete, use only for debugging purposes
-
     checks if a null-terminated <text> matches given grammar <id>
     returns 0 on error (call grammar_get_last_error to retrieve the error text)
     returns 1 on success, the <prod> points to newly allocated buffer with production and <size>
     is filled with the production size
     call grammar_alloc_free to free the memory block pointed by <prod>
-*/
-int grammar_check (grammar id, const byte *text, byte **prod, unsigned int *size);
-
-/*
-    does the same what grammar_check does but much more (approx. 4 times) faster
-    use this function instead of grammar_check
     <estimate_prod_size> is a hint - the initial production buffer size will be of this size,
     but if more room is needed it will be safely resized; set it to 0x1000 or so
 */