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
6fa51029
Commit
6fa51029
authored
Mar 27, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(expand_call, store_one_arg): Don't set KEEP in calls to
assign_stack_temp. From-SVN: r9235
parent
225b8835
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gcc/calls.c
+3
-3
No files found.
gcc/calls.c
View file @
6fa51029
...
...
@@ -1071,7 +1071,7 @@ expand_call (exp, target, ignore)
else
{
int
size
=
int_size_in_bytes
(
type
);
copy
=
assign_stack_temp
(
TYPE_MODE
(
type
),
size
,
1
);
copy
=
assign_stack_temp
(
TYPE_MODE
(
type
),
size
,
0
);
}
MEM_IN_STRUCT_P
(
copy
)
=
AGGREGATE_TYPE_P
(
type
);
...
...
@@ -1699,7 +1699,7 @@ expand_call (exp, target, ignore)
));
if
(
save_mode
==
BLKmode
)
{
save_area
=
assign_stack_temp
(
BLKmode
,
num_to_save
,
1
);
save_area
=
assign_stack_temp
(
BLKmode
,
num_to_save
,
0
);
MEM_IN_STRUCT_P
(
save_area
)
=
0
;
emit_block_move
(
validize_mem
(
save_area
),
stack_area
,
GEN_INT
(
num_to_save
),
...
...
@@ -2971,7 +2971,7 @@ store_one_arg (arg, argblock, may_be_alloca, variable_size, fndecl,
if
(
save_mode
==
BLKmode
)
{
arg
->
save_area
=
assign_stack_temp
(
BLKmode
,
arg
->
size
.
constant
,
1
);
arg
->
size
.
constant
,
0
);
MEM_IN_STRUCT_P
(
arg
->
save_area
)
=
AGGREGATE_TYPE_P
(
TREE_TYPE
(
arg
->
tree_value
));
preserve_temp_slots
(
arg
->
save_area
);
...
...
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