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
6d9efc7b
Commit
6d9efc7b
authored
Apr 08, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(mark_set_1): Clear reg_next_use at the proper place.
From-SVN: r4044
parent
56f9206d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gcc/flow.c
+3
-3
No files found.
gcc/flow.c
View file @
6d9efc7b
...
...
@@ -1795,9 +1795,6 @@ mark_set_1 (needed, dead, x, insn, significant)
/* Mark it as as dead before this insn. */
dead
[
offset
]
|=
bit
;
/* The next use is no longer "next", since a store intervenes. */
reg_next_use
[
regno
]
=
0
;
/* A hard reg in a wide mode may really be multiple registers.
If so, mark all of them just like the first. */
if
(
regno
<
FIRST_PSEUDO_REGISTER
)
...
...
@@ -1831,6 +1828,9 @@ 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
)
...
...
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