]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Make-lang.in (F95_ADDITIONAL_OBJS): Kill.
authorAndrew Pinski <pinskia@physics.uc.edu>
Sun, 17 Oct 2004 17:13:38 +0000 (17:13 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Sun, 17 Oct 2004 17:13:38 +0000 (10:13 -0700)
2004-10-17  Andrew Pinski  <pinskia@physics.uc.edu>

        * Make-lang.in (F95_ADDITIONAL_OBJS): Kill.
        (f951): Do not depend on F95_ADDITIONAL_OBJS and don't
        link it in.

From-SVN: r89172

gcc/fortran/ChangeLog
gcc/fortran/Make-lang.in

index 40227d4e6d7dcdba0b49132f0e6e69b61aa8564d..415f511417005ede8772a93a42c8e12a70ce3f34 100644 (file)
@@ -1,3 +1,9 @@
+2004-10-17  Andrew Pinski  <pinskia@physics.uc.edu>
+
+       * Make-lang.in (F95_ADDITIONAL_OBJS): Kill.
+       (f951): Do not depend on F95_ADDITIONAL_OBJS and don't
+       link it in.
+
 2004-10-14  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
 
        * trans-decl.c (generate_local_decl): Simplify logic, fix comment
index 9517f56ffa64c649cb12d3ba4edf3c48d172252f..14cdcfedf5e2ce52f4af9441d949627e5de0c11f 100644 (file)
@@ -59,8 +59,7 @@ GFORTRAN_CROSS_NAME := $(shell echo gfortran|sed '$(program_transform_cross_name
 
 # These are the groups of object files we have.  The F95_PARSER_OBJS are
 # all the front end files, the F95_OBJS are the files for the translation
-# from the parse tree to GENERIC, and F95_ADDITIONAL_OBJS are the files
-# from the middle end we depend on.
+# from the parse tree to GENERIC
 
 F95_PARSER_OBJS = fortran/arith.o fortran/array.o fortran/bbt.o \
     fortran/check.o fortran/data.o fortran/decl.o fortran/dump-parse-tree.o \
@@ -77,14 +76,6 @@ F95_OBJS = $(F95_PARSER_OBJS) \
     fortran/trans-intrinsic.o fortran/trans-io.o fortran/trans-stmt.o \
     fortran/trans-types.o
 
-# FIXME:
-# We rely on c-semantics to expand from GIMPLE to RTL.
-# This should go away once a real GIMPLE expander is available. 
-F95_ADDITIONAL_OBJS = \
-       tree-cfg.o tree-dfa.o tree-optimize.o tree-gimple.o \
-       tree-ssa.o tree-ssa-ccp.o tree-ssa-dce.o \
-       gimplify.o stor-layout.o
-
 # GFORTRAN uses GMP for its internal arithmetics.
 F95_LIBS = $(GMPLIBS) $(LIBS)
 
@@ -113,10 +104,10 @@ gfortran-cross$(exeext): gfortran$(exeext)
        cp gfortran$(exeext) gfortran-cross$(exeext)
 
 # The compiler itself is called f951.
-f951$(exeext): $(F95_OBJS) $(F95_ADDITIONAL_OBJS) \
+f951$(exeext): $(F95_OBJS) \
                $(BACKEND) $(LIBDEPS)
        $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \
-               $(F95_OBJS) $(F95_ADDITIONAL_OBJS) $(BACKEND) $(F95_LIBS)
+               $(F95_OBJS) $(BACKEND) $(F95_LIBS)
 
 gt-fortran-f95-lang.h gtype-fortran.h        : s-gtype; @true
 gt-fortran-trans-decl.h gt-fortran-trans.h    : s-gtype; @true