Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
8182dc46
Commit
8182dc46
authored
Mar 11, 1999
by
Craig Burley
Committed by
Craig Burley
Mar 11, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add AUTOMATIC to list of unsupported extensions
From-SVN: r25706
parent
827e80cc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
1 deletions
+30
-1
gcc/f/ChangeLog
+4
-0
gcc/f/g77.texi
+26
-1
No files found.
gcc/f/ChangeLog
View file @
8182dc46
Thu Mar 11 17:32:55 1999 Craig Burley <craig@jcb-sc.com>
* g77.texi: Add AUTOMATIC to list of unsupported extensions.
Sat Mar 6 02:28:35 1999 Craig Burley <craig@jcb-sc.com>
Warn about non-Y2K-compliant intrinsics:
...
...
gcc/f/g77.texi
View file @
8182dc46
...
...
@@ -14,7 +14,7 @@
@c
%**
start
of
header
@setfilename
g77
.
info
@set
last
-
up
-
date
1999
-
03
-
06
@set
last
-
up
-
date
1999
-
03
-
11
@set
version
-
g77
0
.
5
.
24
@set
email
-
general
egcs
@@egcs
.
cygnus
.
com
@set
email
-
bugs
egcs
-
bugs
@@egcs
.
cygnus
.
com
...
...
@@ -11999,6 +11999,7 @@ GNU Fortran language:
* Intrinsics in PARAMETER Statements::
* SELECT CASE on CHARACTER Type::
* RECURSIVE Keyword::
* AUTOMATIC Statement::
* Popular Non-standard Types::
* Full Support for Compiler Types::
* Array Bounds Expressions::
...
...
@@ -12157,6 +12158,30 @@ designed to do recursion.
All recursive code can be rewritten to not use recursion,
but the result is not pretty.
@node AUTOMATIC Statement
@subsection @code{AUTOMATIC} Statement
@cindex @code{AUTOMATIC} statement
@cindex statements, @code{AUTOMATIC}
@cindex automatic variables
@cindex variables, automatic
@code{g77} doesn't support the @code{AUTOMATIC} keyword that
@code{f2c} does.
It is not yet clear exactly what this statement would achieve.
The semantic equivalent would be provided by @code{RECURSIVE}
combined with lack of @code{SAVE}.
In that sense, perhaps all it would provide is an
overriding of an unadorned (blanket) @code{SAVE} statement
for specific variables.
It might also serve as a hint to the compiler that placing
even a very large array on the stack is acceptable.
Perhaps it should disallow @code{DATA}
or other specification of any initial values
for affected variables as well.
@node Increasing Precision/Range
@subsection Increasing Precision/Range
@cindex -r8
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment