aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToon Moene <toon@moene.indiv.nluug.nl>2003-05-11 14:57:35 +0200
committerToon Moene <toon@gcc.gnu.org>2003-05-11 12:57:35 +0000
commit180b72c4b1d694c55d49dfcbfd3f9f9c250b56cd (patch)
tree5629a2508ba7f0d37f5f45b8722bb3930c61e8f6
parentf333504d46da2f112b66a3957a7c8d0fd0c422f7 (diff)
downloadgcc-180b72c4b1d694c55d49dfcbfd3f9f9c250b56cd.zip
gcc-180b72c4b1d694c55d49dfcbfd3f9f9c250b56cd.tar.gz
gcc-180b72c4b1d694c55d49dfcbfd3f9f9c250b56cd.tar.bz2
re PR fortran/10726 (Documentation for function "IDate Intrinsic (Unix)" is wrong)
2003-05-11 Toon Moene <toon@moene.indiv.nluug.nl> PR fortran/10726 * intdoc.in: Fix documentation of IDATE. * intdoc.texi: Regenerate. * g77.texi: Document completion of INTEGER*n support. * news.texi: Update due to the above. From-SVN: r66685
-rw-r--r--gcc/f/ChangeLog8
-rw-r--r--gcc/f/g77.texi2
-rw-r--r--gcc/f/intdoc.in8
-rw-r--r--gcc/f/intdoc.texi8
-rw-r--r--gcc/f/news.texi14
5 files changed, 30 insertions, 10 deletions
diff --git a/gcc/f/ChangeLog b/gcc/f/ChangeLog
index 0c5c536..34be9f9 100644
--- a/gcc/f/ChangeLog
+++ b/gcc/f/ChangeLog
@@ -1,3 +1,11 @@
+2003-05-11 Toon Moene <toon@moene.indiv.nluug.nl>
+
+ PR fortran/10726
+ * intdoc.in: Fix documentation of IDATE.
+ * intdoc.texi: Regenerate.
+ * g77.texi: Document completion of INTEGER*n support.
+ * news.texi: Update due to the above.
+
2003-05-08 Roger Sayle <roger@eyesopen.com>
PR fortran/8485
diff --git a/gcc/f/g77.texi b/gcc/f/g77.texi
index b37b20e..7267138 100644
--- a/gcc/f/g77.texi
+++ b/gcc/f/g77.texi
@@ -316,6 +316,8 @@ for @code{INTEGER*1}, @code{INTEGER*2}, and
This inspired Craig to add further support,
even though the resulting support
would still be incomplete.
+This support is believed to be completed at version 3.4
+of @command{gcc} by Roger Sayle (@email{roger@@eyesopen.com}).
@item
David Ronis (@email{ronis@@onsager.chem.mcgill.ca}) inspired
diff --git a/gcc/f/intdoc.in b/gcc/f/intdoc.in
index 9d00bc7..a51bc85 100644
--- a/gcc/f/intdoc.in
+++ b/gcc/f/intdoc.in
@@ -1288,9 +1288,9 @@ zero if not, and negative if the information isn't available.
")
DEFDOC (IDATE_unix, "Get local time info.", "\
-Fills @var{@1@} with the numerical values at the current local time
-of day, month (in the range 1--12), and year in elements 1, 2, and 3,
-respectively.
+Fills @var{@1@} with the numerical values at the current local time.
+The day (in the range 1--31), month (in the range 1--12),
+and year appear in elements 1, 2, and 3 of @var{@1@}, respectively.
The year has four significant digits.
@cindex Y10K compliance
@@ -1308,7 +1308,7 @@ as of the Year 10000.
DEFDOC (IDATE_vxt, "Get local time info (VAX/VMS).", "\
Returns the numerical values of the current local time.
The month (in the range 1--12) is returned in @var{@1@},
-the day (in the range 1--7) in @var{@2@},
+the day (in the range 1--31) in @var{@2@},
and the year in @var{@3@} (in the range 0--99).
@cindex Y2K compliance
diff --git a/gcc/f/intdoc.texi b/gcc/f/intdoc.texi
index b86cb1b9..fc5517a 100644
--- a/gcc/f/intdoc.texi
+++ b/gcc/f/intdoc.texi
@@ -5893,9 +5893,9 @@ Intrinsic groups: @code{unix}.
@noindent
Description:
-Fills @var{TArray} with the numerical values at the current local time
-of day, month (in the range 1--12), and year in elements 1, 2, and 3,
-respectively.
+Fills @var{TArray} with the numerical values at the current local time.
+The day (in the range 1--31), month (in the range 1--12),
+and year appear in elements 1, 2, and 3 of @var{TArray}, respectively.
The year has four significant digits.
@cindex Y10K compliance
@@ -5941,7 +5941,7 @@ Description:
Returns the numerical values of the current local time.
The month (in the range 1--12) is returned in @var{M},
-the day (in the range 1--7) in @var{D},
+the day (in the range 1--31) in @var{D},
and the year in @var{Y} (in the range 0--99).
@cindex Y2K compliance
diff --git a/gcc/f/news.texi b/gcc/f/news.texi
index 27edb02..f7c5003a 100644
--- a/gcc/f/news.texi
+++ b/gcc/f/news.texi
@@ -11,7 +11,7 @@
@c in the standalone derivations of this file (e.g. NEWS).
@set copyrights-news 1995,1996,1997,1998,1999,2000,2001,2002,2003
-@set last-update-news 2003-04-11
+@set last-update-news 2003-05-11
@ifset DOC-NEWS
@include root.texi
@@ -156,7 +156,17 @@ The following information was last updated on @value{last-update-news}:
@heading In @code{GCC} 3.4 versus @code{GCC} 3.3:
@itemize @bullet
@item
-Nothing yet.
+Problem Reports fixed (in chronological order of submission):
+@table @code
+@item 8485
+g77 doesn't accept INTEGER*8 constant in PARAMETER multiplication.
+@item 10726
+Documentation for function IDATE Intrinsic (UNIX) is wrong.
+@end table
+@item
+Roger Sayle (@email{roger@@eyesopen.com}) fixed the remaining
+problems with regard to the support of INTEGER*8, INTEGER*2 and INTEGER*1
+as a fallout of fixing PR 8485.
@end itemize
@heading In @code{GCC} 3.3 versus @code{GCC} 3.2: