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
23ed92ca
Commit
23ed92ca
authored
Jan 20, 1995
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(machine_dependent_reorg): When remove SUBREG, add in
SUBREG_WORD to new register number. From-SVN: r8778
parent
a7771f78
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
gcc/config/sh/sh.c
+6
-2
No files found.
gcc/config/sh/sh.c
View file @
23ed92ca
...
...
@@ -1961,10 +1961,14 @@ machine_dependent_reorg (first)
if
(
mode
==
SImode
&&
hi_const
(
src
))
{
/* This is an HI source, clobber the dest to get the mode right too */
int
offset
=
0
;
mode
=
HImode
;
while
(
GET_CODE
(
dst
)
==
SUBREG
)
dst
=
SUBREG_REG
(
dst
);
dst
=
gen_rtx
(
REG
,
HImode
,
REGNO
(
dst
));
{
offset
+=
SUBREG_WORD
(
dst
);
dst
=
SUBREG_REG
(
dst
);
}
dst
=
gen_rtx
(
REG
,
HImode
,
REGNO
(
dst
)
+
offset
);
}
lab
=
add_constant
(
src
,
mode
);
newsrc
=
gen_rtx
(
MEM
,
mode
,
...
...
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