diff options
| author | Toon Moene <toon@moene.indiv.nluug.nl> | 2006-02-15 22:06:58 +0100 |
|---|---|---|
| committer | Toon Moene <toon@gcc.gnu.org> | 2006-02-15 21:06:58 +0000 |
| commit | cce283c7fed0191170b94eedffe1c95472ca5c9e (patch) | |
| tree | 67fa65ef38317cfebaf3751035971e43f3d5f10d /gcc/fortran/options.c | |
| parent | 01ea23f3d250c13a0097cd22e6d36390941c4c97 (diff) | |
| download | gcc-cce283c7fed0191170b94eedffe1c95472ca5c9e.zip gcc-cce283c7fed0191170b94eedffe1c95472ca5c9e.tar.gz gcc-cce283c7fed0191170b94eedffe1c95472ca5c9e.tar.bz2 | |
re PR fortran/26054 (Gratuitous warning about Fortran 2003 features w/o -std=...)
2006-02-15 Toon Moene <toon@moene.indiv.nluug.nl>
PR fortran/26054
* fortran/options.c: Do not warn for Fortran 2003 features
by default.
* testsuite/gfortran.dg/enum_8.f90: Remove check for warning.
* testsuite/gfortran.dg/iomsg_1.f90: Ditto.
* testsuite/gfortran.dg/enum_1.f90: Ditto.
* testsuite/gfortran.dg/enum_9.f90: Ditto.
* testsuite/gfortran.dg/enum_2.f90: Ditto.
* testsuite/gfortran.dg/enum_10.f90: Ditto.
* testsuite/gfortran.dg/enum_3.f90: Ditto.
* testsuite/gfortran.dg/flush_1.f90: Ditto.
* testsuite/gfortran.dg/enum_4.f90: Ditto.
* testsuite/gfortran.dg/array_constructor_1.f90: Ditto.
* testsuite/gfortran.dg/enum_5.f90: Ditto.
* testsuite/gfortran.dg/enum_6.f90: Ditto.
* testsuite/gfortran.dg/enum_7.f90: Ditto.
From-SVN: r111117
Diffstat (limited to 'gcc/fortran/options.c')
| -rw-r--r-- | gcc/fortran/options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/options.c b/gcc/fortran/options.c index bf1da85..6a9bec9 100644 --- a/gcc/fortran/options.c +++ b/gcc/fortran/options.c @@ -90,7 +90,7 @@ gfc_init_options (unsigned int argc ATTRIBUTE_UNUSED, | GFC_STD_F2003 | GFC_STD_F95 | GFC_STD_F77 | GFC_STD_GNU | GFC_STD_LEGACY; gfc_option.warn_std = GFC_STD_F95_OBS | GFC_STD_F95_DEL - | GFC_STD_F2003 | GFC_STD_LEGACY; + | GFC_STD_LEGACY; gfc_option.warn_nonstd_intrinsics = 0; |
