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
3ac3da71
Commit
3ac3da71
authored
Jun 15, 1998
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reorder tests in last change for speed
From-SVN: r20513
parent
ddc8bed2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
gcc/regmove.c
+4
-3
No files found.
gcc/regmove.c
View file @
3ac3da71
...
...
@@ -560,11 +560,12 @@ copy_src_to_dest (insn, src, dest, loop_depth)
parameter when there is no frame pointer that is not allocated a register.
For now, we just reject them, rather than incrementing the live length. */
if
(
GET_CODE
(
src
)
==
REG
&&
GET_CODE
(
dest
)
==
REG
if
(
GET_CODE
(
src
)
==
REG
&&
REG_LIVE_LENGTH
(
REGNO
(
src
))
>
0
&&
GET_CODE
(
dest
)
==
REG
&&
REG_LIVE_LENGTH
(
REGNO
(
dest
))
>
0
&&
(
set
=
single_set
(
insn
))
!=
NULL_RTX
&&
!
reg_mentioned_p
(
dest
,
SET_SRC
(
set
))
&&
REG_LIVE_LENGTH
(
REGNO
(
dest
))
>
0
&&
REG_LIVE_LENGTH
(
REGNO
(
src
))
>
0
&&
validate_replace_rtx
(
src
,
dest
,
insn
))
{
/* Generate the src->dest move. */
...
...
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