Make-lang.in (fortran/options.o): Add $(PARAMS_H) dependency.

2006-12-14  Richard Guenther  <rguenther@suse.de>
	    Diego Novillo  <dnovillo@redhat.com>

	* Make-lang.in (fortran/options.o): Add $(PARAMS_H) dependency.
	* options.c (params.h): Include.
	(gfc_post_options): Set MAX_ALIASED_VOPS to 50.



Co-Authored-By: Diego Novillo <dnovillo@redhat.com>

From-SVN: r119866
This commit is contained in:
Richard Guenther 2006-12-14 19:39:44 +00:00 committed by Diego Novillo
parent 5cdec2a169
commit a5320d391d
3 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2006-12-14 Richard Guenther <rguenther@suse.de>
Diego Novillo <dnovillo@redhat.com>
* Make-lang.in (fortran/options.o): Add $(PARAMS_H) dependency.
* options.c (params.h): Include.
(gfc_post_options): Set MAX_ALIASED_VOPS to 50.
2006-12-13 Richard Guenther <rguenther@suse.de>
PR fortran/30115

View File

@ -299,4 +299,4 @@ fortran/trans-intrinsic.o: $(GFORTRAN_TRANS_DEPS) fortran/mathbuiltins.def \
fortran/dependency.o: $(GFORTRAN_TRANS_DEPS) fortran/dependency.h
fortran/trans-common.o: $(GFORTRAN_TRANS_DEPS) $(TARGET_H) $(RTL_H)
fortran/resolve.o: fortran/dependency.h
fortran/options.o: $(TARGET_H)
fortran/options.o: $(PARAMS_H) $(TARGET_H)

View File

@ -29,6 +29,7 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
#include "intl.h"
#include "opts.h"
#include "options.h"
#include "params.h"
#include "tree-inline.h"
#include "gfortran.h"
@ -107,6 +108,10 @@ gfc_init_options (unsigned int argc ATTRIBUTE_UNUSED,
/* -fshort-enums can be default on some targets. */
gfc_option.fshort_enums = targetm.default_short_enums ();
/* Increase MAX_ALIASED_VOPS to account for different characteristics
of fortran regarding VOPs. */
MAX_ALIASED_VOPS = 50;
return CL_Fortran;
}