aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Burley <craig@jcb-sc.com>1999-06-25 23:59:27 +0000
committerCraig Burley <craig@jcb-sc.com>1999-06-25 23:59:27 +0000
commit45d418c2e4407a3c549690ba7d16a4ac6e6fbb41 (patch)
treee8c788df4eb68658f6adc0a242ab921e4c1c29f7
parentf9079ce2add16ea5b36c04dec6174b02d1fdc477 (diff)
Describe K(5)=10*3 NAMELIST-read bug
git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@27775 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/f/ChangeLog4
-rw-r--r--gcc/f/bugs.texi13
2 files changed, 16 insertions, 1 deletions
diff --git a/gcc/f/ChangeLog b/gcc/f/ChangeLog
index ec3fff42fab..5090b60ef88 100644
--- a/gcc/f/ChangeLog
+++ b/gcc/f/ChangeLog
@@ -1,3 +1,7 @@
+Fri Jun 25 11:06:32 1999 Craig Burley <craig@jcb-sc.com>
+
+ * bugs.texi: Describe K(5)=10*3 NAMELIST-read bug.
+
Mon Jun 21 12:40:17 1999 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* g77.texi: Update links.
diff --git a/gcc/f/bugs.texi b/gcc/f/bugs.texi
index 643a221c98c..a08a0a17155 100644
--- a/gcc/f/bugs.texi
+++ b/gcc/f/bugs.texi
@@ -9,7 +9,7 @@
@c in the standalone derivations of this file (e.g. BUGS).
@set copyrights-bugs 1995-1999
-@set last-update-bugs 1999-05-06
+@set last-update-bugs 1999-06-25
@include root.texi
@@ -98,6 +98,17 @@ The following information was last updated on @value{last-update-bugs}:
@itemize @bullet
@item
+Input to a @code{NAMELIST} read involving a repeat count,
+such as @samp{K(5)=10*3},
+is not properly handled by @code{libf2c}.
+The first item is written to @samp{K(5)},
+but the remaining nine are written elsewhere (still within the array),
+not necessarily starting at @samp{K(6)}.
+
+A fix is pending, certainly for @code{gcc} 3.0,
+perhaps for 2.96 if such a release is made.
+
+@item
@code{g77} fails to warn about
use of a ``live'' iterative-DO variable
as an implied-DO variable