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
28f6d3af
Commit
28f6d3af
authored
May 01, 1992
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r864
parent
95ca4f96
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
6 deletions
+25
-6
gcc/combine.c
+25
-6
No files found.
gcc/combine.c
View file @
28f6d3af
...
...
@@ -8054,14 +8054,33 @@ distribute_notes (notes, from_insn, i3, i2, elim_i2, elim_i1)
if
(
!
refers_to_regno_p
(
i
,
i
+
1
,
PATTERN
(
place
),
0
))
{
rtx
piece
=
gen_rtx
(
REG
,
word_mode
,
i
);
rtx
use_insn
=
emit_insn_before
(
gen_rtx
(
USE
,
VOIDmode
,
piece
),
place
);
rtx
p
;
/* See if we already placed a USE note for this
register in front of PLACE. */
for
(
p
=
place
;
GET_CODE
(
PREV_INSN
(
p
))
==
INSN
&&
GET_CODE
(
PATTERN
(
PREV_INSN
(
p
)))
==
USE
;
p
=
PREV_INSN
(
p
))
if
(
rtx_equal_p
(
piece
,
XEXP
(
PATTERN
(
PREV_INSN
(
p
)),
0
)))
{
p
=
0
;
break
;
}
if
(
p
)
{
rtx
use_insn
=
emit_insn_before
(
gen_rtx
(
USE
,
VOIDmode
,
piece
),
p
);
REG_NOTES
(
use_insn
)
=
gen_rtx
(
EXPR_LIST
,
REG_DEAD
,
piece
,
REG_NOTES
(
use_insn
));
}
all_used
=
0
;
REG_NOTES
(
use_insn
)
=
gen_rtx
(
EXPR_LIST
,
REG_DEAD
,
piece
,
REG_NOTES
(
use_insn
));
}
if
(
!
all_used
)
...
...
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