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
66321686
Commit
66321686
authored
Sep 01, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Comment fixes.
From-SVN: r2012
parent
c7ee7249
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
gcc/tree.h
+7
-5
No files found.
gcc/tree.h
View file @
66321686
...
@@ -732,14 +732,15 @@ struct tree_type
...
@@ -732,14 +732,15 @@ struct tree_type
#define DECL_INCOMING_RTL(NODE) ((NODE)->decl.saved_insns.r)
#define DECL_INCOMING_RTL(NODE) ((NODE)->decl.saved_insns.r)
/* For FUNCTION_DECL, if it is inline, holds the saved insn chain. */
/* For FUNCTION_DECL, if it is inline, holds the saved insn chain. */
#define DECL_SAVED_INSNS(NODE) ((NODE)->decl.saved_insns.r)
#define DECL_SAVED_INSNS(NODE) ((NODE)->decl.saved_insns.r)
/* For FUNCTION_DECL for built-in function. */
/* For FUNCTION_DECL, if it is inline,
holds the size of the stack frame, as an integer. */
#define DECL_FRAME_SIZE(NODE) ((NODE)->decl.frame_size)
/* For FUNCTION_DECL, if it is built-in,
this identifies which built-in operation it is. */
#define DECL_FUNCTION_CODE(NODE) \
#define DECL_FUNCTION_CODE(NODE) \
((enum built_in_function) (NODE)->decl.frame_size)
((enum built_in_function) (NODE)->decl.frame_size)
#define DECL_SET_FUNCTION_CODE(NODE,VAL) \
#define DECL_SET_FUNCTION_CODE(NODE,VAL) \
((NODE)->decl.frame_size = (int) (VAL))
((NODE)->decl.frame_size = (int) (VAL))
/* For FUNCTION_DECL, if it is inline,
holds the size of the stack frame, as an integer. */
#define DECL_FRAME_SIZE(NODE) ((NODE)->decl.frame_size)
/* For a FIELD_DECL, holds the size of the member as an integer. */
/* For a FIELD_DECL, holds the size of the member as an integer. */
#define DECL_FIELD_SIZE(NODE) ((NODE)->decl.saved_insns.i)
#define DECL_FIELD_SIZE(NODE) ((NODE)->decl.saved_insns.i)
...
@@ -887,7 +888,8 @@ struct tree_decl
...
@@ -887,7 +888,8 @@ struct tree_decl
struct
rtx_def
*
rtl
;
/* acts as link to register transfer language
struct
rtx_def
*
rtl
;
/* acts as link to register transfer language
(rtl) info */
(rtl) info */
/* For a FUNCTION_DECL, if inline, this is the size of frame needed.
/* For a FUNCTION_DECL, if inline, this is the size of frame needed.
If built-in, this is the code for which built-in function. */
If built-in, this is the code for which built-in function.
For other kinds of decls, this is DECL_ALIGN. */
int
frame_size
;
int
frame_size
;
/* For FUNCTION_DECLs: points to insn that constitutes its definition
/* For FUNCTION_DECLs: points to insn that constitutes its definition
on the permanent obstack. For any other kind of decl, this is the
on the permanent obstack. For any other kind of decl, this is 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