]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Make-lang.in (fortran/options.o): Add $(PARAMS_H) dependency.
authorRichard Guenther <rguenther@suse.de>
Thu, 14 Dec 2006 19:39:44 +0000 (19:39 +0000)
committerDiego Novillo <dnovillo@gcc.gnu.org>
Thu, 14 Dec 2006 19:39:44 +0000 (14:39 -0500)
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

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

index fdc054ecfc4271dc661e77c3f397d32b0140e0c4..1b0ac1562c75ac733eb1750e534ea5909f1f64bc 100644 (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
index f99f0be0b9c08b9b11c293936206588b3f1c4b56..077b16ad3c278dcd8780abc29640657bd706bdda 100644 (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)
index 6ec846761850eb32f0c4b95a5d1f4fda874a4df8..8819b6037c6dce3e5b64de1e03ee311fa70e35c1 100644 (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;
 }