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
e100a3bb
Commit
e100a3bb
authored
May 11, 1995
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Eliminate dead code caused by last patch
From-SVN: r9618
parent
08664dff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
10 deletions
+5
-10
gcc/flow.c
+5
-10
No files found.
gcc/flow.c
View file @
e100a3bb
...
...
@@ -2382,20 +2382,15 @@ mark_used_regs (needed, live, x, final, insn)
!=
GET_MODE_SIZE
(
GET_MODE
(
SUBREG_REG
(
x
)))))
reg_changes_size
[
REGNO
(
SUBREG_REG
(
x
))]
=
1
;
/* In case the SUBREG is not of a register, don't optimize */
if
(
GET_CODE
(
SUBREG_REG
(
x
))
!=
REG
)
{
mark_used_regs
(
needed
,
live
,
SUBREG_REG
(
x
),
final
,
insn
);
return
;
}
/* While we're here, optimize this case. */
x
=
SUBREG_REG
(
x
);
/* Must verify that it is a register, since the RS/6000 port has
(subreg:QI (lshift:SI ...)). */
/* In case the SUBREG is not of a register, don't optimize */
if
(
GET_CODE
(
x
)
!=
REG
)
goto
retry
;
{
mark_used_regs
(
needed
,
live
,
x
,
final
,
insn
);
return
;
}
/* ... fall through ... */
...
...
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