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
7ca919b7
Commit
7ca919b7
authored
Apr 14, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(try_combine): When substituting in output of I2, ensure dest isn't
clobbered in I2. From-SVN: r11773
parent
c2d12c8b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
gcc/combine.c
+2
-1
No files found.
gcc/combine.c
View file @
7ca919b7
...
@@ -1307,7 +1307,8 @@ try_combine (i3, i2, i1)
...
@@ -1307,7 +1307,8 @@ try_combine (i3, i2, i1)
The problem can also happen if the dest of I3 is a memory ref,
The problem can also happen if the dest of I3 is a memory ref,
if another dest in I2 is an indirect memory ref. */
if another dest in I2 is an indirect memory ref. */
for
(
i
=
0
;
i
<
XVECLEN
(
p2
,
0
);
i
++
)
for
(
i
=
0
;
i
<
XVECLEN
(
p2
,
0
);
i
++
)
if
(
GET_CODE
(
XVECEXP
(
p2
,
0
,
i
))
==
SET
if
((
GET_CODE
(
XVECEXP
(
p2
,
0
,
i
))
==
SET
||
GET_CODE
(
XVECEXP
(
p2
,
0
,
i
))
==
CLOBBER
)
&&
reg_overlap_mentioned_p
(
SET_DEST
(
PATTERN
(
i3
)),
&&
reg_overlap_mentioned_p
(
SET_DEST
(
PATTERN
(
i3
)),
SET_DEST
(
XVECEXP
(
p2
,
0
,
i
))))
SET_DEST
(
XVECEXP
(
p2
,
0
,
i
))))
break
;
break
;
...
...
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