2009-02-18 Tobias Burnus <burnus@net-b.de>
* intrinsic.texi (MALLOC): Make example more portable.
From-SVN: r144266
+2009-02-18 Tobias Burnus <burnus@net-b.de>
+
+ * intrinsic.texi (MALLOC): Make example more portable.
+
2009-02-13 Mikael Morin <mikael.morin@tele2.fr>
PR fortran/38259
@item @emph{Example}:
The following example demonstrates the use of @code{MALLOC} and
-@code{FREE} with Cray pointers. This example is intended to run on
-32-bit systems, where the default integer kind is suitable to store
-pointers; on 64-bit systems, ptr_x would need to be declared as
-@code{integer(kind=8)}.
+@code{FREE} with Cray pointers.
@smallexample
program test_malloc
+ implicit none
integer i
- integer ptr_x
real*8 x(*), z
pointer(ptr_x,x)