Author: James Van BuskirkJames Van Buskirk Date: May 16, 2008 22:07
> James Van Buskirk wrote:
>> I found some places where the gfortran manual had keyword arguments
>> inconsistent with standard. In all cases the actual compiler agreed
>> with the standard rather than gfortran documentation:
> this message reminded me that i noticed this the other day for the
> move_alloc intrinsic.
> the gfortran manual[1] says:
> MOVE_ALLOC(SRC, DEST)
> while the f2003 (draft) standard uses keywords "from" and "to":
> MOVE ALLOC (FROM, TO) ==> section 13.7.82, page 337
Yeah, here's a sample dialog:
C:\gfortran\test\acosh>notepad move.f90
C:\gfortran\test\acosh>type move.f90
program move
write(*,*) MOVE_ALLOC()
end program move
|