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
73b2ad9e
Commit
73b2ad9e
authored
Aug 08, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(emit_reload_insns): Always clear new_spill_reg_store.
From-SVN: r7876
parent
beb5a9b8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
gcc/reload1.c
+6
-7
No files found.
gcc/reload1.c
View file @
73b2ad9e
...
@@ -5638,7 +5638,9 @@ emit_reload_insns (insn)
...
@@ -5638,7 +5638,9 @@ emit_reload_insns (insn)
{
{
register
rtx
old
;
register
rtx
old
;
rtx
oldequiv_reg
=
0
;
rtx
oldequiv_reg
=
0
;
rtx
store_insn
=
0
;
if
(
reload_spill_index
[
j
]
>=
0
)
new_spill_reg_store
[
reload_spill_index
[
j
]]
=
0
;
old
=
reload_in
[
j
];
old
=
reload_in
[
j
];
if
(
old
!=
0
&&
!
reload_inherited
[
j
]
if
(
old
!=
0
&&
!
reload_inherited
[
j
]
...
@@ -6418,17 +6420,14 @@ emit_reload_insns (insn)
...
@@ -6418,17 +6420,14 @@ emit_reload_insns (insn)
reg_has_output_reload will make this do nothing. */
reg_has_output_reload will make this do nothing. */
note_stores
(
PATTERN
(
p
),
forget_old_reloads_1
);
note_stores
(
PATTERN
(
p
),
forget_old_reloads_1
);
if
(
reg_mentioned_p
(
reload_reg_rtx
[
j
],
PATTERN
(
p
)))
if
(
reg_mentioned_p
(
reload_reg_rtx
[
j
],
PATTERN
(
p
))
store_insn
=
p
;
&&
reload_spill_index
[
j
]
>=
0
)
new_spill_reg_store
[
reload_spill_index
[
j
]]
=
p
;
}
}
output_reload_insns
[
reload_opnum
[
j
]]
=
get_insns
();
output_reload_insns
[
reload_opnum
[
j
]]
=
get_insns
();
end_sequence
();
end_sequence
();
}
}
if
(
reload_spill_index
[
j
]
>=
0
)
new_spill_reg_store
[
reload_spill_index
[
j
]]
=
store_insn
;
}
}
/* Now write all the insns we made for reloads in the order expected by
/* Now write all the insns we made for reloads in the order expected by
...
...
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