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
93609dfb
Commit
93609dfb
authored
Mar 27, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(variable_size): When evaluating sizes of variable types, do so just
for side-effects (the SAVE_EXPRs). From-SVN: r3895
parent
f16fe394
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
gcc/stor-layout.c
+4
-2
No files found.
gcc/stor-layout.c
View file @
93609dfb
...
...
@@ -90,8 +90,10 @@ variable_size (size)
}
if
(
immediate_size_expand
)
/* NULL_RTX is not defined; neither is the rtx type. */
expand_expr
(
size
,
NULL_PTR
,
VOIDmode
,
0
);
/* NULL_RTX is not defined; neither is the rtx type.
Also, we would like to pass const0_rtx here, but don't have it. */
expand_expr
(
size
,
expand_expr
(
integer_zero_node
,
NULL_PTR
,
VOIDmode
,
0
),
VOIDmode
,
0
);
else
pending_sizes
=
tree_cons
(
NULL_TREE
,
size
,
pending_sizes
);
...
...
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