- Many cleanups to make -Wall happy. Next up is pedantic...

This commit is contained in:
ccremers
2007-01-06 14:45:29 +00:00
parent 92090142a0
commit 89c3a20acf
31 changed files with 1871 additions and 1927 deletions

View File

@@ -2,6 +2,7 @@
#include "pheading.h"
/* #include "lex.yy.c" */
#include "tac.h"
#include "error.h"
struct tacnode* spdltac;
@@ -319,6 +320,7 @@ int yyerror(char *s)
extern char *yytext; //!< defined and maintained in lex.c
error ("%s at symbol '%s' on line %i.\n", s, yytext, yylineno);
return 0;
}