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
26f1a00e
Commit
26f1a00e
authored
Jul 05, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(subst_reloads): Don't use gen_lowpart_common to get reload register
into proper mode. From-SVN: r4854
parent
bc0776c6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
gcc/reload.c
+4
-2
No files found.
gcc/reload.c
View file @
26f1a00e
...
...
@@ -4659,9 +4659,11 @@ subst_reloads ()
if
(
reloadreg
)
{
/* Encapsulate RELOADREG so its machine mode matches what
used to be there. */
used to be there. Note that gen_lowpart_common will
do the wrong thing if RELOADREG is multi-word. RELOADREG
will always be a REG here. */
if
(
GET_MODE
(
reloadreg
)
!=
r
->
mode
&&
r
->
mode
!=
VOIDmode
)
reloadreg
=
gen_
lowpart_common
(
r
->
mode
,
reloadreg
);
reloadreg
=
gen_
rtx
(
REG
,
r
->
mode
,
REGNO
(
reloadreg
)
);
/* If we are putting this into a SUBREG and RELOADREG is a
SUBREG, we would be making nested SUBREGs, so we have to fix
...
...
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