diff options
author | Tobias Burnus <burnus@net-b.de> | 2011-10-15 10:34:36 +0200 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2011-10-15 10:34:36 +0200 |
commit | 4650947d66b44b48786a73ac2972ef96f0613565 (patch) | |
tree | 4b3ec462b587a1a8e84dc4081fc7ac70268c6079 /gcc/fortran/decl.c | |
parent | a0bd60d1c9b6bdb85eeaa97a7e91b417aa70bcff (diff) | |
download | gcc-4650947d66b44b48786a73ac2972ef96f0613565.zip gcc-4650947d66b44b48786a73ac2972ef96f0613565.tar.gz gcc-4650947d66b44b48786a73ac2972ef96f0613565.tar.bz2 |
gfortran.texi (Fortran 2008 status, [...]): Update implementation status, change references from TR 29113 to TS 29113.
2011-10-15 Tobias Burnus <burnus@net-b.de>
* gfortran.texi (Fortran 2008 status, TS 29113 status,
Further Interoperability of Fortran with C): Update implementation
status, change references from TR 29113 to TS 29113.
* intrinsic.texi (RANK): Change TR 29113 to TS 29113.
* invoke.text (-std=): Ditto, change -std=f2008tr to
* -std=f2008ts.
* lang.opt (std=): Ditto.
* options.c (gfc_handle_option, set_default_std_flags): Ditto
* and
change GFC_STD_F2008_TR to GFC_STD_F2008_TS.
* libgfortran.h: Ditto.
* intrinsic.c (add_functions, gfc_check_intrinsic_standard):
* Ditto.
* decl.c (verify_c_interop_param): Ditto.
2011-10-15 Tobias Burnus <burnus@net-b.de>
* gfortran.dg/bind_c_usage_23.f90: Change TR 29113 to TS 29113
* in
the comments.
* gfortran.dg/bind_c_usage_24.f90: Ditto.
* gfortran.dg/rank_3.f90: Ditto.
* gfortran.dg/bind_c_usage_22.f90: Ditto, change -std=f2008tr to
-std=f2008ts in dg-options.
* gfortran.dg/rank_4.f90: Ditto.
From-SVN: r180024
Diffstat (limited to 'gcc/fortran/decl.c')
-rw-r--r-- | gcc/fortran/decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/decl.c b/gcc/fortran/decl.c index 0ee2575..9f3a39e 100644 --- a/gcc/fortran/decl.c +++ b/gcc/fortran/decl.c @@ -1069,7 +1069,7 @@ verify_c_interop_param (gfc_symbol *sym) retval = FAILURE; } else if (sym->attr.optional == 1 - && gfc_notify_std (GFC_STD_F2008_TR, "TR29113: Variable '%s' " + && gfc_notify_std (GFC_STD_F2008_TS, "TS29113: Variable '%s' " "at %L with OPTIONAL attribute in " "procedure '%s' which is BIND(C)", sym->name, &(sym->declared_at), |