diff options
author | Jerry DeLisle <jvdelisle@gcc.gnu.org> | 2009-10-13 01:43:39 +0000 |
---|---|---|
committer | Jerry DeLisle <jvdelisle@gcc.gnu.org> | 2009-10-13 01:43:39 +0000 |
commit | 0a81006d27f20b07770c0e04bd9bad31f30131d7 (patch) | |
tree | 5c6541c5a94c89af9f847a5f2e394c13a81ef099 /libgfortran/io | |
parent | b19dd527771efd308d963f4b0a0e6bdb11ec8310 (diff) | |
download | gcc-0a81006d27f20b07770c0e04bd9bad31f30131d7.tar.gz |
re PR libfortran/41683 (F2003 Repeat specification after P descriptor rejected)
2009-10-12 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libgfortran/41683
* io/format.c (parse_format_list): Allow a repeat specifier immediately
after a P specifier.
From-SVN: r152695
Diffstat (limited to 'libgfortran/io')
-rw-r--r-- | libgfortran/io/format.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libgfortran/io/format.c b/libgfortran/io/format.c index 97bd2da77ba..0ee60ea9012 100644 --- a/libgfortran/io/format.c +++ b/libgfortran/io/format.c @@ -706,7 +706,8 @@ parse_format_list (st_parameter_dt *dtp, bool *save_ok) goto data_desc; } - if (t != FMT_COMMA && t != FMT_RPAREN && t != FMT_SLASH) + if (t != FMT_COMMA && t != FMT_RPAREN && t != FMT_SLASH + && t != FMT_POSINT) { fmt->error = "Comma required after P descriptor"; goto finished; |