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
ec8a1940
Commit
ec8a1940
authored
May 23, 2005
by
Roger Sayle
Committed by
Roger Sayle
May 23, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gfortran.texi: Document some more GNU extensions.
From-SVN: r100074
parent
c5fbb0fc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
70 additions
and
0 deletions
+70
-0
gcc/fortran/ChangeLog
+4
-0
gcc/fortran/gfortran.texi
+66
-0
No files found.
gcc/fortran/ChangeLog
View file @
ec8a1940
2005-05-22 Roger Sayle <roger@eyesopen.com>
* gfortran.texi: Document some more GNU extensions.
2005-05-22 Francois-Xavier Coudert <coudert@clipper.ens.fr>
* error.c (gfc_warning): Fix typo in comment.
...
...
gcc/fortran/gfortran.texi
View file @
ec8a1940
...
...
@@ -624,6 +624,12 @@ meaning.
*
Old
-
style
kind
specifications
::
*
Old
-
style
variable
initialization
::
*
Extensions
to
namelist
::
*
X
format
descriptor
::
*
Commas
in
FORMAT
specifications
::
*
I
/
O
item
lists
::
*
Hexadecimal
constants
::
*
Real
array
indices
::
*
Unary
operators
::
@end
menu
@node
Old
-
style
kind
specifications
...
...
@@ -720,6 +726,66 @@ had been called:
To
aid
this
dialog
,
when
input
is
from
stdin
,
errors
produce
send
their
messages
to
stderr
and
execution
continues
,
even
if
IOSTAT
is
set
.
@node
X
format
descriptor
@section
X
format
descriptor
@cindex
X
format
descriptor
To
support
legacy
codes
,
@command{
gfortran
}
permits
the
count
field
of
the
X
edit
descriptor
in
FORMAT
statements
to
be
omitted
.
When
omitted
,
the
count
is
implicitly
assumed
to
be
one
.
@smallexample
PRINT
10
,
2
,
3
10
FORMAT
(
I1
,
X
,
I1
)
@end
smallexample
@node
Commas
in
FORMAT
specifications
@section
Commas
in
FORMAT
specifications
@cindex
Commas
in
FORMAT
specifications
To
support
legacy
codes
,
@command{
gfortran
}
allows
the
comma
separator
to
be
omitted
immediately
before
and
after
character
string
edit
descriptors
in
FORMAT
statements
.
@smallexample
PRINT
10
,
2
,
3
10
FORMAT
(
'
FOO
=
'
I1
'
BAR
=
'
I2
)
@end
smallexample
@node
I
/
O
item
lists
@section
I
/
O
item
lists
@cindex
I
/
O
item
lists
To
support
legacy
codes
,
@command{
gfortran
}
allows
the
input
item
list
of
the
READ
statement
,
and
the
output
item
lists
of
the
WRITE
and
PRINT
statements
to
start
with
a
comma
.
@node
Hexadecimal
constants
@section
Hexadecimal
constants
@cindex
Hexadecimal
constants
As
a
GNU
extension
,
@command{
gfortran
}
allows
hexadecimal
constants
to
be
specified
using
the
X
prefix
,
in
addition
to
the
standard
Z
prefix
.
@node
Real
array
indices
@section
Real
array
indices
@cindex
Real
array
indices
As
a
GNU
extension
,
@command{
gfortran
}
allows
arrays
to
be
indexed
using
real
types
,
whose
values
are
implicitly
converted
to
integers
.
@node
Unary
operators
@section
Unary
operators
@cindex
Unary
operators
As
a
GNU
extension
,
@command{
gfortran
}
allows
unary
plus
and
unary
minus
operators
to
appear
as
the
second
operand
of
binary
arithmetic
operators
without
the
need
for
parenthesis
.
@smallexample
X
=
Y
*
-
Z
@end
smallexample
@include
intrinsic
.
texi
@c
---------------------------------------------------------------------
@c
Contributing
...
...
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