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
2f53bab5
Commit
2f53bab5
authored
Sep 28, 1999
by
Mark Mitchell
Committed by
Mark Mitchell
Sep 28, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ir.texi: Improve documentation for TARGET_EXPR.
From-SVN: r29688
parent
18def38f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
10 deletions
+20
-10
gcc/cp/ChangeLog
+4
-0
gcc/cp/ir.texi
+16
-10
No files found.
gcc/cp/ChangeLog
View file @
2f53bab5
1999-09-28 Mark Mitchell <mark@codesourcery.com>
* ir.texi: Improve documentation for TARGET_EXPR.
1999-09-27 Nathan Sidwell <nathan@acm.org>
1999-09-27 Nathan Sidwell <nathan@acm.org>
Augment stringification of trees.
Augment stringification of trees.
...
...
gcc/cp/ir.texi
View file @
2f53bab5
...
@@ -1624,7 +1624,7 @@ These nodes represent @code{throw} expressions. The single operand is
...
@@ -1624,7 +1624,7 @@ These nodes represent @code{throw} expressions. The single operand is
an
expression
for
the
code
that
should
be
executed
to
throw
the
an
expression
for
the
code
that
should
be
executed
to
throw
the
exception
.
However
,
there
is
one
implicit
action
not
represented
in
exception
.
However
,
there
is
one
implicit
action
not
represented
in
that
expression
;
namely
the
call
to
@code{
__throw
}
.
This
function
takes
that
expression
;
namely
the
call
to
@code{
__throw
}
.
This
function
takes
no
arguments
.
If
@code{
setjmp
}
/
@code{
longjmp
}
exceptio
sn
are
used
,
the
no
arguments
.
If
@code{
setjmp
}
/
@code{
longjmp
}
exceptio
ns
are
used
,
the
function
@code{
__sjthrow
}
is
called
instead
.
The
normal
G
++
back
-
end
function
@code{
__sjthrow
}
is
called
instead
.
The
normal
G
++
back
-
end
uses
the
function
@code{
emit_throw
}
to
generate
this
code
;
you
can
uses
the
function
@code{
emit_throw
}
to
generate
this
code
;
you
can
examine
this
function
to
see
what
needs
to
be
done
.
examine
this
function
to
see
what
needs
to
be
done
.
...
@@ -1811,17 +1811,23 @@ is a @code{VAR_DECL} for the temporary variable. The second operand is
...
@@ -1811,17 +1811,23 @@ is a @code{VAR_DECL} for the temporary variable. The second operand is
the
initializer
for
the
temporary
.
The
initializer
is
evaluated
,
and
the
initializer
for
the
temporary
.
The
initializer
is
evaluated
,
and
copied
(
bitwise
)
into
the
temporary
.
copied
(
bitwise
)
into
the
temporary
.
Often
,
a
@code{
TARGET_EXPR
}
occurs
on
the
right
-
hand
side
of
an
assignment
,
or
as
the
second
operand
to
a
comma
-
expression
which
is
itself
the
right
-
hand
side
of
an
assignment
,
etc
.
In
this
case
,
we
say
that
the
@code{
TARGET_EXPR
}
is
``
normal
'';
otherwise
,
we
say
it
is
``
orphaned
''
.
For
a
normal
@code{
TARGET_EXPR
}
the
temporary
variable
should
be
treated
as
an
alias
for
the
left
-
hand
side
of
the
assignment
,
rather
than
as
a
new
temporary
variable
.
The
third
operand
to
the
@code{
TARGET_EXPR
}
,
if
present
,
is
a
The
third
operand
to
the
@code{
TARGET_EXPR
}
,
if
present
,
is
a
cleanup
-
expression
(
i
.
e
.,
destructor
call
)
for
the
temporary
.
If
this
cleanup
-
expression
(
i
.
e
.,
destructor
call
)
for
the
temporary
.
If
this
expression
is
not
copied
into
some
other
location
(
i
.
e
.,
if
it
is
not
expression
is
orphaned
,
then
this
expression
must
be
executed
when
the
the
right
-
hand
side
of
an
assignment
,
or
the
second
operand
to
a
statement
containing
this
expression
is
complete
.
These
cleanups
must
comma
-
expression
which
is
itself
the
right
-
hand
side
of
an
assignment
,
always
be
executed
in
the
order
opposite
to
that
in
which
they
were
etc
.),
then
this
expression
must
be
executed
when
the
statement
encountered
.
Note
that
if
a
temporary
is
created
on
one
branch
of
a
containing
this
expression
is
complete
.
These
cleanups
must
always
be
conditional
operator
(
i
.
e
.,
in
the
second
or
third
operand
to
a
executed
in
the
order
opposite
to
that
in
which
they
were
encountered
.
@code{
COND_EXPR
}
),
the
cleanup
must
be
run
only
if
that
branch
is
Note
that
if
a
temporary
is
created
on
one
branch
of
a
conditional
actually
executed
.
operator
(
i
.
e
.,
in
the
second
or
third
operand
to
a
@code{
COND_EXPR
}
),
the
cleanup
must
be
run
only
if
that
branch
is
actually
executed
.
See
@code{
STMT_IS_FULL_EXPR_P
}
for
more
information
about
running
these
See
@code{
STMT_IS_FULL_EXPR_P
}
for
more
information
about
running
these
cleanups
.
cleanups
.
...
...
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