]> gcc.gnu.org Git - gcc.git/commitdiff
Make-lang.in (fortran-warn): Remove -Wno-error.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Sat, 19 Mar 2005 01:48:22 +0000 (01:48 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Sat, 19 Mar 2005 01:48:22 +0000 (01:48 +0000)
* Make-lang.in (fortran-warn): Remove -Wno-error.
(expr.o-warn, resolve.o-warn, simplify.o-warn,
trans-common.o-warn): Specify -Wno-error.

From-SVN: r96714

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

index 314d79f2ef79b9a1c82c93fea468e542b99df5cf..cddb35888337bc24bb60f503c799386882312101 100644 (file)
@@ -1,3 +1,9 @@
+2005-03-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * Make-lang.in (fortran-warn): Remove -Wno-error.
+       (expr.o-warn, resolve.o-warn, simplify.o-warn,
+       trans-common.o-warn): Specify -Wno-error.
+
 2005-03-17  Tobias Schl"uter  <tobias.schlueter@physik.uni-muenchen.de>
 
        * trans-array.c (gfc_trans_static_array_pointer,
index 841997378588e4cfa826ee5097b97369034a4599..8551e06211d9be1bad92ed1fcfe20416eb8551c2 100644 (file)
@@ -49,7 +49,14 @@ GFORTRAN_CROSS_NAME := $(shell echo gfortran|sed '$(program_transform_cross_name
 #^L
 
 # Use strict warnings for this front end.
-fortran-warn = $(STRICT_WARN) -Wno-error
+fortran-warn = $(STRICT_WARN)
+
+# These files get warnings from an inline function in GMP saying:
+# "control may reach end of non-void function '__gmpz_get_ui' being inlined"
+fortran/expr.o-warn = -Wno-error
+fortran/resolve.o-warn = -Wno-error
+fortran/simplify.o-warn = -Wno-error
+fortran/trans-common.o-warn = -Wno-error
 
 # 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
This page took 0.061454 seconds and 5 git commands to generate.