diff options
author | Craig Burley <craig@jcb-sc.com> | 1999-02-25 11:32:08 +0000 |
---|---|---|
committer | Craig Burley <burley@gcc.gnu.org> | 1999-02-25 06:32:08 -0500 |
commit | 43a5dea8483a1489bad552514ef68b87408a3c47 (patch) | |
tree | feaa681d94d206491fb64d0a0bf61076aa89e7c5 /gcc | |
parent | f38cbf0fd3367a7dc0df52250ec8f48acfd286cb (diff) | |
download | gcc-43a5dea8483a1489bad552514ef68b87408a3c47.zip gcc-43a5dea8483a1489bad552514ef68b87408a3c47.tar.gz gcc-43a5dea8483a1489bad552514ef68b87408a3c47.tar.bz2 |
Clarify/index lack of run-time allocation for concatenation
From-SVN: r25437
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/f/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/f/g77.texi | 10 |
2 files changed, 14 insertions, 1 deletions
diff --git a/gcc/f/ChangeLog b/gcc/f/ChangeLog index d837504..cceb41f 100644 --- a/gcc/f/ChangeLog +++ b/gcc/f/ChangeLog @@ -1,3 +1,8 @@ +1999-02-25 Craig Burley <craig@jcb-sc.com> + + * g77.texi: Clarify/index lack of run-time allocation for + concatenation. + 1999-02-25 Andreas Jaeger <aj@arthur.rhein-neckar.de> * f/intdoc.in: Add missing `,' after cross references. diff --git a/gcc/f/g77.texi b/gcc/f/g77.texi index 515bc16..3c62e10 100644 --- a/gcc/f/g77.texi +++ b/gcc/f/g77.texi @@ -14,7 +14,7 @@ @c %**start of header @setfilename g77.info -@set last-up-date 1999-02-20 +@set last-up-date 1999-02-25 @set version-g77 0.5.24 @set email-general egcs@@egcs.cygnus.com @set email-bugs egcs-bugs@@egcs.cygnus.com @@ -14457,8 +14457,16 @@ It is not worth repeating them here. @item @cindex concatenation @cindex CHARACTER*(*) +@cindex run-time, dynamic allocation Support arbitrary operands for concatenation, even in contexts where run-time allocation is required. +For example: + +@smallexample +SUBROUTINE X(A) +CHARACTER*(*) A +CALL FOO(A // 'suffix') +@end smallexample @item Consider adding a @code{NUMERIC} type to designate typeless numeric constants, |