]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
gfortran.texi (STRUCTURE and RECORD): State more clearly how to convert them into...
authorTobias Burnus <burnus@net-b.de>
Mon, 11 Mar 2013 18:37:30 +0000 (19:37 +0100)
committerTobias Burnus <burnus@gcc.gnu.org>
Mon, 11 Mar 2013 18:37:30 +0000 (19:37 +0100)
2013-03-11  Tobias Burnus  <burnus@net-b.de>

        * gfortran.texi (STRUCTURE and RECORD): State more clearly how
        to convert them into derived types.

From-SVN: r196602

gcc/fortran/ChangeLog
gcc/fortran/gfortran.texi

index e7e52316ccfc90fe67daea745846683266b1ba59..88b514d014b0774227c74099a8e10c94f69fff2e 100644 (file)
@@ -1,3 +1,8 @@
+2013-03-11  Tobias Burnus  <burnus@net-b.de>
+
+       * gfortran.texi (STRUCTURE and RECORD): State more clearly how
+       to convert them into derived types.
+
 2013-03-10  Paul Thomas  <pault@gcc.gnu.org>
 
        PR fortran/56575
index 462b44366157711b183d3ff25547c5a571e20163..4f9008d3d262bb5983f9b072b42896f58ac9787f 100644 (file)
@@ -2004,10 +2004,19 @@ code that uses them running with the GNU Fortran compiler.
 @cindex @code{STRUCTURE}
 @cindex @code{RECORD}
 
-Structures are user-defined aggregate data types; this functionality was
-standardized in Fortran 90 with an different syntax, under the name of
-``derived types''.  Here is an example of code using the non portable
-structure syntax:
+Record structures are a pre-Fortran-90 vendor extension to create
+user-defined aggregate data types.  GNU Fortran does not support
+record structures, only Fortran 90's ``derived types'', which have
+a different syntax.
+
+In many cases, record structures can easily be converted to derived types.
+To convert, replace @code{STRUCTURE /}@var{structure-name}@code{/}
+by @code{TYPE} @var{type-name}.  Additionally, replace
+@code{RECORD /}@var{structure-name}@code{/} by
+@code{TYPE(}@var{type-name}@code{)}. Finally, in the component access,
+replace the period (@code{.}) by the percent sign (@code{%}).
+
+Here is an example of code using the non portable record structure syntax:
 
 @example
 ! Declaring a structure named ``item'' and containing three fields: