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
09f532c9
Commit
09f532c9
authored
Dec 11, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(tree_decl): Reorder field declarations to reduce size on 64 bit
machines. From-SVN: r13287
parent
d4096689
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
9 deletions
+10
-9
gcc/tree.h
+10
-9
No files found.
gcc/tree.h
View file @
09f532c9
...
...
@@ -1097,8 +1097,8 @@ struct tree_decl
char
common
[
sizeof
(
struct
tree_common
)];
char
*
filename
;
int
linenum
;
union
tree_node
*
size
;
unsigned
int
uid
;
union
tree_node
*
size
;
#ifdef ONLY_INT_FIELDS
int
mode
:
8
;
#else
...
...
@@ -1133,6 +1133,15 @@ struct tree_decl
unsigned
lang_flag_6
:
1
;
unsigned
lang_flag_7
:
1
;
/* 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.
For other kinds of decls, this is DECL_ALIGN. */
union
{
int
i
;
unsigned
int
u
;
enum
built_in_function
f
;
}
frame_size
;
union
tree_node
*
name
;
union
tree_node
*
context
;
union
tree_node
*
arguments
;
...
...
@@ -1144,14 +1153,6 @@ struct tree_decl
union
tree_node
*
machine_attributes
;
struct
rtx_def
*
rtl
;
/* acts as link to register transfer language
(rtl) info */
/* 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.
For other kinds of decls, this is DECL_ALIGN. */
union
{
int
i
;
unsigned
int
u
;
enum
built_in_function
f
;
}
frame_size
;
/* For FUNCTION_DECLs: points to insn that constitutes its definition
on the permanent obstack. For any other kind of decl, this is the
alignment. */
...
...
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