]> git.saurik.com Git - bison.git/blobdiff - src/symtab.c
POSIX: complain if %prec's token was not defined.
[bison.git] / src / symtab.c
index ce29dfc9e35544379cbf3b3cf8a063576712b09c..ebdf04c1fc29945342a536bf5ec160cee610cdba 100644 (file)
@@ -219,24 +219,6 @@ symbol_type_set (symbol *sym, uniqstr type_name, location loc)
     }
 }
 
-/*-----------------------------------.
-| Get the CLASS associated with SYM. |
-`-----------------------------------*/
-
-const char *
-symbol_class_get_string (symbol *sym)
-{
-  if (sym->class)
-    {
-      if (sym->class == token_sym)
-       return "terminal";
-      else if (sym->class == nterm_sym)
-       return "nonterminal";
-    }
-  return "unknown";
-}
-
-
 /*-----------------------------------------.
 | Set the DESTRUCTOR associated with SYM.  |
 `-----------------------------------------*/