aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/match.c
diff options
context:
space:
mode:
authorJanne Blomqvist <jb@gcc.gnu.org>2017-12-17 18:28:08 +0200
committerJanne Blomqvist <jb@gcc.gnu.org>2017-12-17 18:28:08 +0200
commit8179b067281d2cdf7247b1d42a14d9efc2f79af7 (patch)
tree9010becfc66b7475268d626fdb6b7dc8bb4b9d15 /gcc/fortran/match.c
parenta2ef9558d17aeb038cbc8a66a203f7a8e6c6e81e (diff)
downloadgcc-8179b067281d2cdf7247b1d42a14d9efc2f79af7.zip
gcc-8179b067281d2cdf7247b1d42a14d9efc2f79af7.tar.gz
gcc-8179b067281d2cdf7247b1d42a14d9efc2f79af7.tar.bz2
Support -std=f2018
The Fortran committee has decided to rename the upcoming Fortran 2015 standard to Fortran 2018. This is not a reflection of a three year delay in the process, but rather they are following other standards in adopting the year of publication for the name. For more details see N2144. This patch renames GFC_STD_F2015 to GFC_STD_F2018, and makes it a separate flag rather than an alias for GFC_STD_GNU. Also, it adds a -std=f2018 argument, and documents it. Regtested on x86_64-pc-linux-gnu. gcc/fortran/ChangeLog: 2017-12-17 Janne Blomqvist <jb@gcc.gnu.org> * decl.c (gfc_match_implicit_none): Use GFC_STD_F2018 instead of GFC_STD_F2015. * error.c (gfc_notify_std): Add GFC_STD_F2018{_DEL,_OBS} to switch. * gfortran.texi: Document -std=f2018. * interface.c (compare_parameter): Fix comment. * invoke.texi: Document -std=f2018. * lang.opt: Add -std=f2018 argumnet. * libgfortran.h (GFC_STD_F2015): Rename to GFC_STD_F0218, use separate flag bit. (GFC_STD_F2018_DEL): New macro. (GFC_STD_F2018_OBS): Likewise. * match.c (gfc_match_stopcode): Use GFC_STD_F2018. * options.c (set_default_std_flags): Add F2018 flags to defaults. (gfc_handle_option): Set options for -std=f2018. gcc/testsuite/ChangeLog: 2017-12-17 Janne Blomqvist <jb@gcc.gnu.org> * gfortran.dg/error_stop_3.f90: Update -std= option, fix comments. * gfortran.dg/error_stop_4.f90: Update error message. * gfortran.dg/implicit_14.f90: Likewise. * gfortran.dg/spellcheck-procedure_2.f90: Don't warn for F2018 features. From-SVN: r255761
Diffstat (limited to 'gcc/fortran/match.c')
-rw-r--r--gcc/fortran/match.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/match.c b/gcc/fortran/match.c
index c5bdce2..d63b11c 100644
--- a/gcc/fortran/match.c
+++ b/gcc/fortran/match.c
@@ -2985,7 +2985,7 @@ gfc_match_stopcode (gfc_statement st)
{
if (st == ST_ERROR_STOP)
{
- if (!gfc_notify_std (GFC_STD_F2015, "%s statement at %C in PURE "
+ if (!gfc_notify_std (GFC_STD_F2018, "%s statement at %C in PURE "
"procedure", gfc_ascii_statement (st)))
goto cleanup;
}