aboutsummaryrefslogtreecommitdiff
path: root/gcc/LANGUAGES
diff options
context:
space:
mode:
authorJeff Law <law@gcc.gnu.org>1998-04-09 04:55:36 -0600
committerJeff Law <law@gcc.gnu.org>1998-04-09 04:55:36 -0600
commit5a5732cf8ce5f18975733a5425125a32ffa15dae (patch)
tree8b56f08cf19540ea16cc9172688e4334a37b82b0 /gcc/LANGUAGES
parentd0f9021ae392a7bb8a4a2ee9b649a9b7266eb5f5 (diff)
downloadgcc-5a5732cf8ce5f18975733a5425125a32ffa15dae.zip
gcc-5a5732cf8ce5f18975733a5425125a32ffa15dae.tar.gz
gcc-5a5732cf8ce5f18975733a5425125a32ffa15dae.tar.bz2
Change from Dave.
From-SVN: r19069
Diffstat (limited to 'gcc/LANGUAGES')
-rw-r--r--gcc/LANGUAGES11
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/LANGUAGES b/gcc/LANGUAGES
index ed8a896..302fcd2 100644
--- a/gcc/LANGUAGES
+++ b/gcc/LANGUAGES
@@ -6,6 +6,17 @@ time as we can formally start documenting the interface this file will
serve as a repository for information on these interface and any incompatable
changes we've made.
+Apr 7, 1998:
+ The interface between toplev.c and the language front ends for opening the
+ source file has changed:
+
+ o init_lex() has been renamed to init_parse (char *filename) where filename
+ is the name of the source file.
+ o The code in toplev.c which opened the source file should be moved to
+ the new init_parse function.
+ o toplev.c now calls finish_parse() instead of closing the source file
+ using fclose(). This should now be done in finish_parse, if necessary.
+
Apr 1, 1998:
Front-ends must now define lang_print_xnode. It is safe for this
function to do nothing. See c-lang.c.