diff options
-rw-r--r-- | gcc/fortran/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/fortran/Make-lang.in | 7 |
2 files changed, 6 insertions, 7 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 2c9820b..b0c8fba 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,5 +1,11 @@ 2007-05-19 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> + PR fortran/30820 + * Make-lang.in: Remove use of -Wno-error for expr.o, resolve.o, + simplify.o and trans-common.o. + +2007-05-19 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> + PR fortran/31974 * trans-array.c (gfc_trans_auto_array_allocation): Avoid multiplication of mismatched types. diff --git a/gcc/fortran/Make-lang.in b/gcc/fortran/Make-lang.in index f9053dc..b16d826 100644 --- a/gcc/fortran/Make-lang.in +++ b/gcc/fortran/Make-lang.in @@ -48,13 +48,6 @@ GFORTRAN_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo gfortran|sed # Use strict warnings for this front end. 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 # from the parse tree to GENERIC |