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
e1535fe0
Commit
e1535fe0
authored
Apr 27, 2007
by
Brooks Moses
Committed by
Brooks Moses
Apr 27, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* intrinsic.texi (Transfer): Improve documentation.
From-SVN: r124234
parent
67948fd2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
6 deletions
+28
-6
gcc/fortran/ChangeLog
+4
-0
gcc/fortran/intrinsic.texi
+24
-6
No files found.
gcc/fortran/ChangeLog
View file @
e1535fe0
2007-04-27 Brooks Moses <brooks.moses@codesourcery.com>
* intrinsic.texi (Transfer): Improve documentation.
2007-04-27 Brooks Moses <brooks.moses@codesourcery.com>
* gfortran.texi (Option Index): Add @samp as needed.
2007-04-27 Daniel Franke <franke.daniel@gmail.com>
...
...
gcc/fortran/intrinsic.texi
View file @
e1535fe0
...
...
@@ -9527,10 +9527,12 @@ See @code{HUGE} for an example.
@
table
@
asis
@
item
@
emph
{
Description
}:
Interprets
the
bit
pattern
of
@
var
{
SOURCE
}
as
a
variable
of
the
same
type
and
type
parameters
as
@
var
{
MOLD
}.
Interprets
the
bitwise
representation
of
@
var
{
SOURCE
}
in
memory
as
if
it
is
the
representation
of
a
variable
or
array
of
the
same
type
and
type
parameters
as
@
var
{
MOLD
}.
This
is
also
known
as
@
emph
{
casting
}
one
type
to
another
.
This
is
approximately
equivalent
to
the
C
concept
of
@
emph
{
casting
}
one
type
to
another
.
@
item
@
emph
{
Standard
}:
F95
and
later
...
...
@@ -9545,13 +9547,29 @@ Transformational function
@
multitable
@
columnfractions
.15
.70
@
item
@
var
{
SOURCE
}
@
tab
Shall
be
a
scalar
or
an
array
of
any
type
.
@
item
@
var
{
MOLD
}
@
tab
Shall
be
a
scalar
or
an
array
of
any
type
.
@
item
@
var
{
SIZE
}
@
tab
(
Optional
)
shall
be
a
scalar
and
of
type
@
item
@
var
{
SIZE
}
@
tab
(
Optional
)
shall
be
a
scalar
of
type
@
code
{
INTEGER
}.
@
end
multitable
@
item
@
emph
{
Return
value
}:
The
result
has
the
same
type
as
@
var
{
MOLD
}
with
the
bit
level
representation
of
@
var
{
SOURCE
}.
The
result
has
the
same
type
as
@
var
{
MOLD
},
with
the
bit
level
representation
of
@
var
{
SOURCE
}.
If
@
var
{
SIZE
}
is
present
,
the
result
is
a
one
-
dimensional
array
of
length
@
var
{
SIZE
}.
If
@
var
{
SIZE
}
is
absent
but
@
var
{
MOLD
}
is
an
array
(
of
any
size
or
shape
),
the
result
is
a
one
-
dimensional
array
of
the
minimum
length
needed
to
contain
the
entirety
of
the
bitwise
representation
of
@
var
{
SOURCE
}.
If
@
var
{
SIZE
}
is
absent
and
@
var
{
MOLD
}
is
a
scalar
,
the
result
is
a
scalar
.
If
the
bitwise
representation
of
the
result
is
longer
than
that
of
@
var
{
SOURCE
},
then
the
leading
bits
of
the
result
correspond
to
those
of
@
var
{
SOURCE
}
and
any
trailing
bits
are
filled
arbitrarily
.
When
the
resulting
bit
representation
does
not
correspond
to
a
valid
representation
of
a
variable
of
the
same
type
as
@
var
{
MOLD
},
the
results
are
undefined
,
and
subsequent
operations
on
the
result
cannot
be
guaranteed
to
produce
sensible
behavior
.
For
example
,
it
is
possible
to
create
@
code
{
LOGICAL
}
variables
for
which
@
code
{@
var
{
VAR
}}
and
@
code
{.
NOT
.@
var
{
VAR
}}
both
appear
to
be
true
.
@
item
@
emph
{
Example
}:
@
smallexample
...
...
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