diff options
author | Jeffrey A Law <law@cygnus.com> | 1997-08-17 23:33:04 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-08-17 17:33:04 -0600 |
commit | ff752ff6c95a70e2279415488d3bf49b1d48da0d (patch) | |
tree | e72d2eaecaeeb2187315190525e659668bf377b0 /gcc/f/parse.c | |
parent | 6042434abc4a8b3e64f5fd3bb665605649e8471e (diff) | |
download | gcc-ff752ff6c95a70e2279415488d3bf49b1d48da0d.zip gcc-ff752ff6c95a70e2279415488d3bf49b1d48da0d.tar.gz gcc-ff752ff6c95a70e2279415488d3bf49b1d48da0d.tar.bz2 |
INSTALL: Rebuilt.
* 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].
From-SVN: r14824
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 7a48fbb..62b98f3 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 (); |