diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-08-17 23:33:04 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-08-17 23:33:04 +0000 |
commit | 329c4d44381c13115c37d23a26f1de6b26ff164f (patch) | |
tree | e72d2eaecaeeb2187315190525e659668bf377b0 /gcc/f/parse.c | |
parent | 9d8b937d505fe8929568c3d571f5d53dc33cd30f (diff) | |
download | gcc-329c4d44381c13115c37d23a26f1de6b26ff164f.tar.gz |
* INSTALL: Rebuilt.
* install.texi: Remove "Object File Differences" section. Remove
all references to zzz.o failing comparison tests.
* version.c, version.h: Renamed from zzz.c and zzz.h. Remove
date and time stamps so a 3 stage build reports no differences.
* Make-lang.in: Corresponding changes.
* Makefile.in: Likewise.
* g77.c, parse.c: Likewise.
So 3-stage build compares OK. Rename zzz.[ch] files to version.[ch].
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14824 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/f/parse.c')
-rw-r--r-- | gcc/f/parse.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gcc/f/parse.c b/gcc/f/parse.c index 7a48fbb58f5..62b98f31930 100644 --- a/gcc/f/parse.c +++ b/gcc/f/parse.c @@ -25,7 +25,7 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "top.h" #include "com.h" #include "where.h" -#include "zzz.h" +#include "version.h" #if FFECOM_targetCURRENT == FFECOM_targetGCC #include "flags.j" #endif @@ -47,10 +47,7 @@ yyparse () ffewhereFile wf; if (ffe_is_version ()) - fprintf (stderr, "GNU Fortran Front End version %s compiled: %s %s\n", - ffezzz_version_string, - ffezzz_date, - ffezzz_time); + fprintf (stderr, "GNU Fortran Front End version %s\n", ffe_version_string); #if FFECOM_targetCURRENT == FFECOM_targetFFE ffe_init_0 (); |