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
4117a96b
Commit
4117a96b
authored
May 12, 1998
by
J"orn Rennecke
Committed by
Joern Rennecke
May 12, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* reload1.c (gen_reload): Create REG_EQUIV notes.
From-SVN: r19703
parent
4d3eb414
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
gcc/ChangeLog
+4
-0
gcc/reload1.c
+8
-2
No files found.
gcc/ChangeLog
View file @
4117a96b
Wed May 13 03:23:45 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
* reload1.c (gen_reload): Create REG_EQUIV notes.
Tue May 12 22:21:07 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
* reload1.c (reload): Fix check for USEs to use code of pattern.
...
...
gcc/reload1.c
View file @
4117a96b
...
...
@@ -7244,13 +7244,19 @@ gen_reload (out, in, opnum, type)
its validity determination, i.e., the way it would after reload
has completed. */
if
(
constrain_operands
(
code
,
1
))
return
insn
;
{
/* Add a REG_EQUIV note so that find_equiv_reg can find it. */
REG_NOTES
(
insn
)
=
gen_rtx
(
EXPR_LIST
,
REG_EQUIV
,
in
,
REG_NOTES
(
insn
));
return
insn
;
}
}
delete_insns_since
(
last
);
gen_reload
(
out
,
op1
,
opnum
,
type
);
emit_insn
(
gen_add2_insn
(
out
,
op0
));
insn
=
emit_insn
(
gen_add2_insn
(
out
,
op0
));
REG_NOTES
(
insn
)
=
gen_rtx
(
EXPR_LIST
,
REG_EQUIV
,
in
,
REG_NOTES
(
insn
));
}
#ifdef SECONDARY_MEMORY_NEEDED
...
...
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