* src/output.c (output): Delete call to reader_output_yylsp.

* src/reader.c (reader): Likewise.
* src/reader.h:	Delete declaration of reader_output_yylsp.
This commit is contained in:
Pascal Bart
2001-09-07 16:50:01 +00:00
parent 714720fcfe
commit b0c4483ed2
4 changed files with 10 additions and 10 deletions

View File

@@ -1,3 +1,9 @@
2001-09-07 Pascal Bart <pascal.bart@epita.fr>
* src/output.c (output): Delete call to reader_output_yylsp.
* src/reader.c (reader): Likewise.
* src/reader.h: Delete declaration of reader_output_yylsp.
2001-09-02 Marc Autret <autret_m@epita.fr> 2001-09-02 Marc Autret <autret_m@epita.fr>
* src/reader.c: Include muscle_tab.h. * src/reader.c: Include muscle_tab.h.

View File

@@ -1087,9 +1087,6 @@ output (void)
{ {
obstack_init (&output_obstack); obstack_init (&output_obstack);
#if 0
reader_output_yylsp (&table_obstack); */
#endif
free_itemsets (); free_itemsets ();
output_token_translations (); output_token_translations ();

View File

@@ -2031,12 +2031,11 @@ reader (void)
readgram (); readgram ();
/* Some C code is given at the end of the grammar file. */ /* Some C code is given at the end of the grammar file. */
read_additionnal_code (); read_additionnal_code ();
/* Now we know whether we need the line-number stack. If we do, /* Now we know whether we need the line-number stack. If we do,
write its type into the .tab.h file. */ write its type into the .tab.h file.
#if 0 This is no longer need with header skeleton. */
if (defines_flag)
reader_output_yylsp (&defines_obstack);
#endif
/* Assign the symbols their symbol numbers. Write #defines for the /* Assign the symbols their symbol numbers. Write #defines for the
token symbols into FDEFINES if requested. */ token symbols into FDEFINES if requested. */
packsymbols (); packsymbols ();

View File

@@ -30,8 +30,6 @@
extern void reader PARAMS ((void)); extern void reader PARAMS ((void));
extern void reader_output_yylsp PARAMS ((struct obstack *));
extern int lineno; extern int lineno;
extern char **tags; extern char **tags;
extern short *user_toknums; extern short *user_toknums;