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
cd6642cb
Commit
cd6642cb
authored
Oct 05, 1999
by
Mark Mitchell
Committed by
Mark Mitchell
Oct 05, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ir.texi: Document LOOP_EXPR and EXIT_EXPR.
From-SVN: r29834
parent
85f88abf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
gcc/cp/ChangeLog
+2
-0
gcc/cp/ir.texi
+13
-0
No files found.
gcc/cp/ChangeLog
View file @
cd6642cb
1999-10-05 Mark Mitchell <mark@codesourcery.com>
* ir.texi: Document LOOP_EXPR and EXIT_EXPR.
* method.c (synthesize_method): Call setup_vtbl_ptr for destructors.
* decl.c (start_function): Set current_in_charge_parm for
...
...
gcc/cp/ir.texi
View file @
cd6642cb
...
...
@@ -1466,6 +1466,8 @@ The @code{WHILE_BODY} is the body of the loop.
@tindex
CALL_EXPR
@tindex
CONSTRUCTOR
@tindex
STMT_EXPR
@tindex
LOOP_EXPR
@tindex
EXIT_EXPR
@tindex
ARRAY_REF
The
internal
representation
for
expressions
is
for
the
most
part
quite
...
...
@@ -1817,6 +1819,17 @@ contained in the expression; this is always a @code{COMPOUND_STMT}. The
value
of
the
expression
is
the
value
of
the
last
sub
-
statement
in
the
@code{
COMPOUND_STMT
}
.
@item
LOOP_EXPR
These
nodes
represent
``
infinite
''
loops
.
The
@code{
LOOP_EXPR_BODY
}
represents
the
body
of
the
loop
.
It
should
be
executed
forever
,
unless
an
@code{
EXIT_EXPR
}
is
encountered
.
@item
EXIT_EXPR
These
nodes
represent
conditional
exits
from
the
nearest
enclosing
@code{
LOOP_EXPR
}
.
The
single
operand
is
the
condition
;
if
it
is
non
-
zero
,
then
the
loop
should
be
exited
.
An
@code{
EXIT_EXPR
}
will
only
appear
within
a
@code{
LOOP_EXPR
}
.
@item
CONSTRUCTOR
These
nodes
represent
the
brace
-
enclosed
initializers
for
a
structure
or
array
.
The
first
operand
is
reserved
for
use
by
the
back
-
end
.
The
...
...
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