diff options
author | toon <toon@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-05 21:24:04 +0000 |
---|---|---|
committer | toon <toon@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-05 21:24:04 +0000 |
commit | 1358c56050a04ab3d07426f6e578451f86f0ba2d (patch) | |
tree | 7c9f1179d4cdd51f06ef860d2355288721275cd9 /gcc | |
parent | e7120910c9f092be0147296329a516021ba7d8fd (diff) | |
download | ppe42-gcc-1358c56050a04ab3d07426f6e578451f86f0ba2d.tar.gz ppe42-gcc-1358c56050a04ab3d07426f6e578451f86f0ba2d.zip |
2001-10-05 Toon Moene <toon@moene.indiv.nluug.nl>
* news.texi: Document libf2c being built as a shared library.
Use of array elements in bounds of adjustable arrays ditto.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46044 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/f/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/f/news.texi | 19 |
2 files changed, 23 insertions, 1 deletions
diff --git a/gcc/f/ChangeLog b/gcc/f/ChangeLog index 872834fef17..8c02b555374 100644 --- a/gcc/f/ChangeLog +++ b/gcc/f/ChangeLog @@ -1,3 +1,8 @@ +2001-10-05 Toon Moene <toon@moene.indiv.nluug.nl> + + * news.texi: Document libf2c being built as a shared library. + Use of array elements in bounds of adjustable arrays ditto. + 2001-10-03 Toon Moene <toon@moene.indiv.nluug.nl> * Make-lang.in: Remove reference to FORTRAN_INIT. diff --git a/gcc/f/news.texi b/gcc/f/news.texi index 82a94b3a994..d5c149f2689 100644 --- a/gcc/f/news.texi +++ b/gcc/f/news.texi @@ -9,7 +9,7 @@ @c in the standalone derivations of this file (e.g. NEWS). @set copyrights-news 1995,1996,1997,1998,1999,2000,2001 -@set last-update-news 2001-06-03 +@set last-update-news 2001-10-05 @include root.texi @@ -156,6 +156,23 @@ The following information was last updated on @value{last-update-news}: @itemize @bullet @ifclear USERVISONLY @item +Based on work done by Juergen Pfeifer (@email{juergen.pfeifer@@gmx.net}) +libf2c is now a shared library. One can still link in all objects with +the program by specifying the @code{-static} option. + +@item +Robert Anderson (@email{rwa@@alumni.princeton.edu}) thought up a two +line change that enables g77 to compile such code as: +@smallexample +SUBROUTINE SUB(A, N) +DIMENSION N(2) +DIMENSION A(N(1),N(2)) +A(1,1) = 1. +END +@end smallexample +Note the use of array elements in the bounds of the adjustable array A. + +@item George Helffrich (@email{george@@geo.titech.ac.jp}) implemented a change in substring index checking (when specifying @code{-fbounds-check}) that permits the use of zero length substrings of the form |