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
1febe16b
Commit
1febe16b
authored
May 31, 2000
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add documentation of TREE_ADDRESSABLE in FIELD_DECL
From-SVN: r34309
parent
051c57da
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
gcc/tree.h
+5
-2
No files found.
gcc/tree.h
View file @
1febe16b
...
@@ -161,8 +161,8 @@ struct tree_common
...
@@ -161,8 +161,8 @@ struct tree_common
addressable_flag:
addressable_flag:
TREE_ADDRESSABLE in
TREE_ADDRESSABLE in
VAR_DECL, FUNCTION_DECL,
CONSTRUCTOR, LABEL_DECL, ..._TYPE
VAR_DECL, FUNCTION_DECL,
FIELD_DECL, CONSTRUCTOR, LABEL_DECL,
IDENTIFIER_NODE
..._TYPE,
IDENTIFIER_NODE
static_flag:
static_flag:
...
@@ -471,6 +471,9 @@ extern void tree_class_check_failed PARAMS ((const tree, char,
...
@@ -471,6 +471,9 @@ extern void tree_class_check_failed PARAMS ((const tree, char,
So it cannot be in a register.
So it cannot be in a register.
In a FUNCTION_DECL, nonzero means its address is needed.
In a FUNCTION_DECL, nonzero means its address is needed.
So it must be compiled even if it is an inline function.
So it must be compiled even if it is an inline function.
In a FIELD_DECL node, it means that the programmer is permitted to
construct the address of this field. This is used for aliasing
purposes: see record_component_aliases.
In CONSTRUCTOR nodes, it means object constructed must be in memory.
In CONSTRUCTOR nodes, it means object constructed must be in memory.
In LABEL_DECL nodes, it means a goto for this label has been seen
In LABEL_DECL nodes, it means a goto for this label has been seen
from a place outside all binding contours that restore stack levels.
from a place outside all binding contours that restore stack levels.
...
...
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