diff options
| author | Richard Guenther <rguenther@suse.de> | 2006-12-14 19:39:44 +0000 |
|---|---|---|
| committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2006-12-14 14:39:44 -0500 |
| commit | a5320d391de5337dffcfdff37c871ab74f39f5fa (patch) | |
| tree | 4ca519d8445032efde620bf9fb6274f9b779ff05 /gcc/fortran/options.c | |
| parent | 5cdec2a1698690817a8dc642b819dd9240fde80b (diff) | |
| download | gcc-a5320d391de5337dffcfdff37c871ab74f39f5fa.zip gcc-a5320d391de5337dffcfdff37c871ab74f39f5fa.tar.gz gcc-a5320d391de5337dffcfdff37c871ab74f39f5fa.tar.bz2 | |
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
Diffstat (limited to 'gcc/fortran/options.c')
| -rw-r--r-- | gcc/fortran/options.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/fortran/options.c b/gcc/fortran/options.c index 6ec8467..8819b60 100644 --- a/gcc/fortran/options.c +++ b/gcc/fortran/options.c @@ -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; } |
