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
62874575
Commit
62874575
authored
Jul 14, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(force_reg): Don't make a REG_EQUAL note for an insn that doesn't set
TEMP. From-SVN: r7771
parent
eb3a6507
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
gcc/explow.c
+7
-3
No files found.
gcc/explow.c
View file @
62874575
...
...
@@ -578,15 +578,19 @@ force_reg (mode, x)
enum
machine_mode
mode
;
rtx
x
;
{
register
rtx
temp
,
insn
;
register
rtx
temp
,
insn
,
set
;
if
(
GET_CODE
(
x
)
==
REG
)
return
x
;
temp
=
gen_reg_rtx
(
mode
);
insn
=
emit_move_insn
(
temp
,
x
);
/* Let optimizers know that TEMP's value never changes
and that X can be substituted for it. */
if
(
CONSTANT_P
(
x
))
and that X can be substituted for it. Don't get confused
if INSN set something else (such as a SUBREG of TEMP). */
if
(
CONSTANT_P
(
x
)
&&
(
set
=
single_set
(
insn
))
!=
0
&&
SET_DEST
(
set
)
==
temp
)
{
rtx
note
=
find_reg_note
(
insn
,
REG_EQUAL
,
NULL_RTX
);
...
...
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