regenerate bison output files

This commit is contained in:
rlar 2010-11-16 19:14:53 +00:00
parent 5412e4bfd2
commit 2355ed9a83
3 changed files with 15 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2010-11-16 Robert Larice
* src/frontend/parse-bison.c ,
* src/spicelib/parser/inpptree-parser.c :
regenerate bison output files
2010-11-16 Robert Larice
* src/frontend/parse-bison.y ,
* src/spicelib/parser/inpptree-parser.y ,

View File

@ -131,7 +131,7 @@
# define __func__ __FUNCTION__ /* __func__ is C99, but MSC can't */
#endif
#define U(x) (void)x
/* Enabling traces. */
@ -1867,7 +1867,10 @@ yyreturn:
static void
PPerror (YYLTYPE *locp, char **line, struct pnode **retval, char const *s)
{
U(line); U(retval);
IGNORE(locp);
IGNORE(line);
IGNORE(retval);
fprintf (stderr, "%s: %s\n", __func__, s);
}

View File

@ -119,7 +119,7 @@
# define __func__ __FUNCTION__ /* __func__ is C99, but MSC can't */
#endif
#define U(x) (void)x
/* Enabling traces. */
@ -1761,7 +1761,10 @@ yyreturn:
static void
PTerror (char **line, struct INPparseNode **retval, void *ckt, char const *s)
{
U(line); U(retval); U(ckt);
IGNORE(line);
IGNORE(retval);
IGNORE(ckt);
fprintf (stderr, "%s: %s\n", __func__, s);
}