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
5c5033c3
Commit
5c5033c3
authored
Nov 30, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(convert_move): When emit multiword conversion, force FROM into a new
pseudo-reg if it overlaps TO. From-SVN: r8593
parent
db40b434
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
gcc/expr.c
+6
-0
No files found.
gcc/expr.c
View file @
5c5033c3
...
...
@@ -916,6 +916,12 @@ convert_move (to, from, unsignedp)
/* No special multiword conversion insn; do it by hand. */
start_sequence
();
/* Since we will turn this into a no conflict block, we must ensure
that the source does not overlap the target. */
if
(
reg_overlap_mentioned_p
(
to
,
from
))
from
=
force_reg
(
from_mode
,
from
);
/* Get a copy of FROM widened to a word, if necessary. */
if
(
GET_MODE_BITSIZE
(
from_mode
)
<
BITS_PER_WORD
)
lowpart_mode
=
word_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