Commit 974ede64 by Andrew Pinski Committed by Andrew Pinski

Make-lang.in (F95_ADDITIONAL_OBJS): Kill.

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
parent 7befac71
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> 2004-10-14 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
* trans-decl.c (generate_local_decl): Simplify logic, fix comment * trans-decl.c (generate_local_decl): Simplify logic, fix comment
......
...@@ -59,8 +59,7 @@ GFORTRAN_CROSS_NAME := $(shell echo gfortran|sed '$(program_transform_cross_name ...@@ -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 # 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 # 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 parse tree to GENERIC
# from the middle end we depend on.
F95_PARSER_OBJS = fortran/arith.o fortran/array.o fortran/bbt.o \ 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 \ fortran/check.o fortran/data.o fortran/decl.o fortran/dump-parse-tree.o \
...@@ -77,14 +76,6 @@ F95_OBJS = $(F95_PARSER_OBJS) \ ...@@ -77,14 +76,6 @@ F95_OBJS = $(F95_PARSER_OBJS) \
fortran/trans-intrinsic.o fortran/trans-io.o fortran/trans-stmt.o \ fortran/trans-intrinsic.o fortran/trans-io.o fortran/trans-stmt.o \
fortran/trans-types.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. # GFORTRAN uses GMP for its internal arithmetics.
F95_LIBS = $(GMPLIBS) $(LIBS) F95_LIBS = $(GMPLIBS) $(LIBS)
...@@ -113,10 +104,10 @@ gfortran-cross$(exeext): gfortran$(exeext) ...@@ -113,10 +104,10 @@ gfortran-cross$(exeext): gfortran$(exeext)
cp gfortran$(exeext) gfortran-cross$(exeext) cp gfortran$(exeext) gfortran-cross$(exeext)
# The compiler itself is called f951. # The compiler itself is called f951.
f951$(exeext): $(F95_OBJS) $(F95_ADDITIONAL_OBJS) \ f951$(exeext): $(F95_OBJS) \
$(BACKEND) $(LIBDEPS) $(BACKEND) $(LIBDEPS)
$(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \ $(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-f95-lang.h gtype-fortran.h : s-gtype; @true
gt-fortran-trans-decl.h gt-fortran-trans.h : s-gtype; @true gt-fortran-trans-decl.h gt-fortran-trans.h : s-gtype; @true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment