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
93514916
Commit
93514916
authored
Dec 19, 1994
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(mark_set_1): For multi-reg hard register, clear all
reg_next_use entries. From-SVN: r8670
parent
bff3fc41
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
gcc/flow.c
+8
-3
No files found.
gcc/flow.c
View file @
93514916
...
...
@@ -2019,9 +2019,6 @@ mark_set_1 (needed, dead, x, insn, significant)
register
rtx
y
=
reg_next_use
[
regno
];
register
int
blocknum
=
BLOCK_NUM
(
insn
);
/* The next use is no longer "next", since a store intervenes. */
reg_next_use
[
regno
]
=
0
;
/* If this is a hard reg, record this function uses the reg. */
if
(
regno
<
FIRST_PSEUDO_REGISTER
)
...
...
@@ -2031,12 +2028,20 @@ mark_set_1 (needed, dead, x, insn, significant)
for
(
i
=
regno
;
i
<
endregno
;
i
++
)
{
/* The next use is no longer "next", since a store
intervenes. */
reg_next_use
[
i
]
=
0
;
regs_ever_live
[
i
]
=
1
;
reg_n_sets
[
i
]
++
;
}
}
else
{
/* The next use is no longer "next", since a store
intervenes. */
reg_next_use
[
regno
]
=
0
;
/* Keep track of which basic blocks each reg appears in. */
if
(
reg_basic_block
[
regno
]
==
REG_BLOCK_UNKNOWN
)
...
...
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