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
472fbdd1
Commit
472fbdd1
authored
Oct 12, 1992
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(try_combine): Save DEST of NI2PAT before calling recog_for_combine,
which might make it a PARALLEL. From-SVN: r2411
parent
460fe04f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
gcc/combine.c
+5
-3
No files found.
gcc/combine.c
View file @
472fbdd1
...
...
@@ -1676,11 +1676,13 @@ try_combine (i3, i2, i1)
&&
!
find_reg_note
(
i3
,
REG_UNUSED
,
SET_DEST
(
XVECEXP
(
newpat
,
0
,
0
))))
{
rtx
ni2dest
;
newi2pat
=
XVECEXP
(
newpat
,
0
,
0
);
ni2dest
=
SET_DEST
(
XVECEXP
(
newpat
,
0
,
0
));
newpat
=
XVECEXP
(
newpat
,
0
,
1
);
SUBST
(
SET_SRC
(
newpat
),
gen_lowpart_for_combine
(
GET_MODE
(
SET_SRC
(
newpat
)),
SET_DEST
(
newi2pat
)));
gen_lowpart_for_combine
(
GET_MODE
(
SET_SRC
(
newpat
)),
ni2dest
));
i2_code_number
=
recog_for_combine
(
&
newi2pat
,
i2
,
&
new_i2_notes
);
if
(
i2_code_number
>=
0
)
insn_code_number
=
recog_for_combine
(
&
newpat
,
i3
,
&
new_i3_notes
);
...
...
@@ -1717,7 +1719,7 @@ try_combine (i3, i2, i1)
insn
=
NEXT_INSN
(
insn
))
{
if
(
GET_RTX_CLASS
(
GET_CODE
(
insn
))
==
'i'
&&
reg_referenced_p
(
SET_DEST
(
newi2pat
)
,
PATTERN
(
insn
)))
&&
reg_referenced_p
(
ni2dest
,
PATTERN
(
insn
)))
{
for
(
link
=
LOG_LINKS
(
insn
);
link
;
link
=
XEXP
(
link
,
1
))
...
...
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