diff options
author | Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2009-05-07 21:48:14 +0000 |
---|---|---|
committer | François-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2009-05-07 21:48:14 +0000 |
commit | 6e8cb9bef0c5f8ac37203ff78cc9a7a047184765 (patch) | |
tree | 202c3d82d2c0cf18f6cec071c32752ad8653adbc /gcc | |
parent | 743460ea821f749dd56e31a9925d33ae3240566a (diff) | |
download | gcc-6e8cb9bef0c5f8ac37203ff78cc9a7a047184765.zip gcc-6e8cb9bef0c5f8ac37203ff78cc9a7a047184765.tar.gz gcc-6e8cb9bef0c5f8ac37203ff78cc9a7a047184765.tar.bz2 |
re PR fortran/36382 (Support $ as first character in symbol names and in IMPLICT)
PR fortran/36382
* invoke.texi: Document that -fdollar-ok does not allow $ to be
used in IMPLICIT statement.
From-SVN: r147256
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fortran/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/fortran/invoke.texi | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 2bb9a54..ca854c4 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,9 @@ +2009-05-07 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> + + PR fortran/36382 + * invoke.texi: Document that -fdollar-ok does not allow $ to be + used in IMPLICIT statement. + 2009-05-06 Janus Weil <janus@gcc.gnu.org> Paul Thomas <pault@gcc.gnu.org> diff --git a/gcc/fortran/invoke.texi b/gcc/fortran/invoke.texi index 8c9bfce..97fbf77 100644 --- a/gcc/fortran/invoke.texi +++ b/gcc/fortran/invoke.texi @@ -259,6 +259,7 @@ the default width of @code{DOUBLE PRECISION} to 16 bytes if possible, unless Allow @samp{$} as a valid non-first character in a symbol name. Symbols that start with @samp{$} are rejected since it is unclear which rules to apply to implicit typing as different vendors implement different rules. +Using @samp{$} in @code{IMPLICIT} statements is also rejected. @item -fbackslash @opindex @code{backslash} |