]> git.saurik.com Git - bison.git/commitdiff
* src/reader.c (reader): Delete obsolete call to function
authorPascal Bart <pascal.bart@epita.fr>
Fri, 31 Aug 2001 08:00:56 +0000 (08:00 +0000)
committerPascal Bart <pascal.bart@epita.fr>
Fri, 31 Aug 2001 08:00:56 +0000 (08:00 +0000)
output_trailers and output_headers.
* src/output.h: Remove obsolete functions prototypes of output_headers
and output_trailers.

ChangeLog
src/output.h
src/reader.c

index a26be138b0b3ac8e34ab210d9f9117a4a670614e..443e38039cbdf46043902f9a4d92a663636b5b28 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-08-31  Pascal Bart  <pascal.bart@epita.fr>
+
+       * src/reader.c (reader): Delete obsolete call to function 
+       output_trailers and output_headers.
+       * src/output.h: Remove obsolete functions prototypes of output_headers
+       and output_trailers.
+
 2001-08-30  Pascal Bart  <pascal.bart@epita.fr>
 
        * src/main.c: Include macrotab.h.
index 7bd3184af0c87929aecf8e33918689e39ec7ece9..9a2dcb8f3b7c00d523ad057ed1c855ae7c7dea42 100644 (file)
 #ifndef OUTPUT_H_
 # define OUTPUT_H_
 
-/* Output constant strings to the beginning of certain files.  */
-void output_headers PARAMS ((void));
-
-/* Output constant strings to the ends of certain files.  */
-void output_trailers PARAMS ((void));
-
 /* Output the parsing tables and the parser code to FTABLE.  */
 void output PARAMS ((void));
 
index d7145da7699fe49fccd1799ad5e24ed3c9ca7592..e46d5fab976684a52389be864c18c7ecd0f5425b 100644 (file)
@@ -2043,10 +2043,6 @@ reader (void)
      TABLE_OBSTACK and FDEFINES file.  Also notice any %token, %left,
      etc. found there.  */
   read_declarations ();
-  /* Start writing the guard and action files, if they are needed.  */
-#if 0
-  output_headers ();
-#endif
   /* Read in the grammar, build grammar in list form.  Write out
      guards and actions.  */
   readgram ();
@@ -2060,7 +2056,6 @@ reader (void)
 #endif
   /* Write closing delimiters for actions and guards.  */
 #if 0
-  output_trailers (); 
   if (locations_flag)
     obstack_sgrow (&table_obstack, "#define YYLSP_NEEDED 1\n\n");
 #endif