This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [Fortran, Patch] Implement IMPLICIT NONE


FX wrote:
Build and regtested on x86-64-gnu-linux.
OK for the trunk?
Looks mostly OK, but I have one question: I donât understand what the wording "Type IMPLICIT NONE statementâ is supposed to mean. Why âtypeâ?

Well, I want to distinguish "IMPLICIT NONE (external)" which only applies to procedures from "IMPLICIT NONE" alias "IMPLICIT NONE (type)" which applies only to variables and function (return value) types. Thus,
  IMPLICIT NONE (external)
  IMPLICIT integer(a-z)
is valid while
  IMPLICIT NONE
  IMPLICIT integer(a-z)
is not.

If you have a better suggestion for the wording â

Tobias


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]