diff options
author | Tobias Burnus <burnus@net-b.de> | 2012-02-22 18:25:11 +0100 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2012-02-22 18:25:11 +0100 |
commit | 4ff89fcbf2b77347a477f4f0725e1a11894eaf6d (patch) | |
tree | 2d507078ae9d753ecf63e1f25f6e8ac8f6167eb9 /gcc/fortran/io.c | |
parent | 219db888b5adc949d931397a3fdabdfbd6fbfc62 (diff) | |
download | gcc-4ff89fcbf2b77347a477f4f0725e1a11894eaf6d.zip gcc-4ff89fcbf2b77347a477f4f0725e1a11894eaf6d.tar.gz gcc-4ff89fcbf2b77347a477f4f0725e1a11894eaf6d.tar.bz2 |
re PR fortran/52335 (I/O: -std=f95 rejects valid DELIM= in OPEN)
2012-02-22 Tobias Burnus <burnus@net-b.de>
PR fortran/52335
* io.c (gfc_match_open): Remove bogus F2003 DELIM= check.
2012-02-22 Tobias Burnus <burnus@net-b.de>
PR fortran/52335
* gfortran.dg/io_constraints_10.f90: New.
From-SVN: r184485
Diffstat (limited to 'gcc/fortran/io.c')
-rw-r--r-- | gcc/fortran/io.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/fortran/io.c b/gcc/fortran/io.c index b7eac6c..7caadc5 100644 --- a/gcc/fortran/io.c +++ b/gcc/fortran/io.c @@ -1947,10 +1947,6 @@ gfc_match_open (void) /* Checks on the DELIM specifier. */ if (open->delim) { - if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: DELIM= at %C " - "not allowed in Fortran 95") == FAILURE) - goto cleanup; - if (open->delim->expr_type == EXPR_CONSTANT) { static const char *delim[] = { "APOSTROPHE", "QUOTE", "NONE", NULL }; |