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
a2f2ce96
Commit
a2f2ce96
authored
Dec 17, 1996
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(update_flow_info): When add REG_DEAD notes for dest of
last insn, add check for global_regs. From-SVN: r13318
parent
0a49cbd4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
gcc/sched.c
+4
-0
No files found.
gcc/sched.c
View file @
a2f2ce96
...
...
@@ -4629,6 +4629,10 @@ update_flow_info (notes, first, last, orig_insn)
dest
=
XEXP
(
dest
,
0
);
if
(
GET_CODE
(
dest
)
==
REG
/* Global registers are always live, so the code below does not
apply to them. */
&&
(
REGNO
(
dest
)
>=
FIRST_PSEUDO_REGISTER
||
!
global_regs
[
REGNO
(
dest
)])
&&
!
reg_overlap_mentioned_p
(
dest
,
SET_SRC
(
set
)))
{
for
(
insn
=
PREV_INSN
(
last
);
;
insn
=
PREV_INSN
(
insn
))
...
...
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