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
f8a9e02b
Commit
f8a9e02b
authored
Feb 23, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(choose_reload_regs): If EQUIV is a SUBREG, make a new REG.
From-SVN: r6612
parent
fdff8c6d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
gcc/reload1.c
+6
-3
No files found.
gcc/reload1.c
View file @
f8a9e02b
...
...
@@ -5044,9 +5044,12 @@ choose_reload_regs (insn, avoid_return_reg)
regno
=
REGNO
(
equiv
);
else
if
(
GET_CODE
(
equiv
)
==
SUBREG
)
{
regno
=
REGNO
(
SUBREG_REG
(
equiv
));
if
(
regno
<
FIRST_PSEUDO_REGISTER
)
regno
+=
SUBREG_WORD
(
equiv
);
/* This must be a SUBREG of a hard register.
Make a new REG since this might be used in an
address and not all machines support SUBREGs
there. */
regno
=
REGNO
(
SUBREG_REG
(
equiv
))
+
SUBREG_WORD
(
equiv
);
equiv
=
gen_rtx
(
REG
,
reload_mode
[
r
],
regno
);
}
else
abort
();
...
...
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