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
f283f66b
Commit
f283f66b
authored
Mar 03, 1995
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(expand_expr, CLEANUP_POINT_EXPR): Force the operand out
of memory before running cleanups. From-SVN: r9117
parent
f7393e85
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
+4
-1
gcc/expr.c
+4
-1
No files found.
gcc/expr.c
View file @
f283f66b
...
@@ -4980,7 +4980,10 @@ expand_expr (exp, target, tmode, modifier)
...
@@ -4980,7 +4980,10 @@ expand_expr (exp, target, tmode, modifier)
int
old_temp_level
=
target_temp_slot_level
;
int
old_temp_level
=
target_temp_slot_level
;
push_temp_slots
();
push_temp_slots
();
target_temp_slot_level
=
temp_slot_level
;
target_temp_slot_level
=
temp_slot_level
;
op0
=
expand_expr
(
TREE_OPERAND
(
exp
,
0
),
target
,
VOIDmode
,
modifier
);
op0
=
expand_expr
(
TREE_OPERAND
(
exp
,
0
),
target
,
tmode
,
modifier
);
/* If we're going to use this value, load it up now. */
if
(
!
ignore
)
op0
=
force_not_mem
(
op0
);
expand_cleanups_to
(
old_cleanups
);
expand_cleanups_to
(
old_cleanups
);
preserve_temp_slots
(
op0
);
preserve_temp_slots
(
op0
);
free_temp_slots
();
free_temp_slots
();
...
...
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