Commit 43a5dea8 by Craig Burley Committed by Craig Burley

Clarify/index lack of run-time allocation for concatenation

From-SVN: r25437
parent f38cbf0f
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.
......
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment