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
fd291392
Commit
fd291392
authored
Aug 05, 2002
by
Gabriel Dos Reis
Committed by
Gabriel Dos Reis
Aug 05, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* doc/c-tree.texi (Expression trees): Document VA_ARG_EXPR
From-SVN: r56050
parent
4c6f7cf1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
gcc/ChangeLog
+4
-0
gcc/doc/c-tree.texi
+7
-0
No files found.
gcc/ChangeLog
View file @
fd291392
2002-08-05 Gabriel Dos Reis <gdr@nerim.net>
* doc/c-tree.texi (Expression trees): Document VA_ARG_EXPR
2002-08-04 Chris Demetriou <cgd@broadcom.com>
* doc/invoke.texi: Remove duplicated paragraph describing
...
...
gcc/doc/c-tree.texi
View file @
fd291392
...
...
@@ -1771,6 +1771,7 @@ This macro returns the attributes on the type @var{type}.
@tindex
CLEANUP_POINT_EXPR
@tindex
ARRAY_REF
@tindex
VTABLE_REF
@tindex
VA_ARG_EXPR
The
internal
representation
for
expressions
is
for
the
most
part
quite
straightforward
.
However
,
there
are
a
few
facts
that
one
must
bear
in
...
...
@@ -2312,4 +2313,10 @@ The first operand is the expression that computes the vtable reference.
The
second
operand
is
the
@code{
VAR_DECL
}
of
the
vtable
.
The
third
operand
is
an
@code{
INTEGER_CST
}
of
the
byte
offset
into
the
vtable
.
@item
VA_ARG_EXPR
This
node
is
used
to
implement
support
for
the
C
/
C
++
variable
argument
-
list
mechanism
.
It
represents
expressions
like
@code{
va_arg
(
ap
,
type
)
}
.
Its
@code{
TREE_TYPE
}
yields
the
tree
representation
for
@code{
type
}
and
its
sole
argument
yields
the
representation
for
@code{
ap
}
.
@end
table
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