Found at: http://groups.google.com/group/comp.lang.fortran/browse_thread/thread/3228dcee5e3d57c7 Some compilers (such as ifort) allow symbols which start with a $ sign - and they allow IMPLICT with $. gfortran currently does not recognize these. Solution: a) Support it as ifort does b) Document the non-support in the -fdollar-ok documentation.
Doc patch here: http://gcc.gnu.org/ml/gcc-patches/2009-05/msg00078.html I am against allowing $ as first letter in identifiers, as there now are much better ways to do that (and it's not such a common practice anyway).
Subject: Bug 36382 Author: fxcoudert Date: Thu May 7 21:48:14 2009 New Revision: 147256 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=147256 Log: PR fortran/36382 * invoke.texi: Document that -fdollar-ok does not allow $ to be used in IMPLICIT statement. Modified: trunk/gcc/fortran/ChangeLog trunk/gcc/fortran/invoke.texi
Fixed.