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
6c6a14b5
Commit
6c6a14b5
authored
Nov 03, 2000
by
J"orn Rennecke
Committed by
Joern Rennecke
Nov 03, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* flow.c (verify_local_live_at_start): Allow hard regs to die.
From-SVN: r37220
parent
5a0b0c7a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
4 deletions
+21
-4
gcc/ChangeLog
+4
-0
gcc/flow.c
+17
-4
No files found.
gcc/ChangeLog
View file @
6c6a14b5
Fri Nov 3 05:41:07 2000 J"orn Rennecke <amylaar@redhat.com>
* flow.c (verify_local_live_at_start): Allow hard regs to die.
2000-11-02 Neil Booth <neilb@earthling.net>
config:
...
...
gcc/flow.c
View file @
6c6a14b5
...
...
@@ -2888,11 +2888,24 @@ verify_local_live_at_start (new_live_at_start, bb)
EXECUTE_IF_SET_IN_REG_SET
(
new_live_at_start
,
0
,
i
,
{
/* No registers should die. */
/* No
pseudo
registers should die. */
if
(
REGNO_REG_SET_P
(
bb
->
global_live_at_start
,
i
))
abort
();
/* Verify that the now-live register is wider than word_mode. */
verify_wide_reg
(
i
,
bb
->
head
,
bb
->
end
);
{
/* But hard regs can reasonably die, e.g. when we combine
(insn 6 30 7 (set (reg/v:DI 83)
(reg:DI 5 r5)) (nil)
(expr_list:REG_DEAD (reg:DI 5 r5) (nil)))
... and ...
(insn 17 15 18 (set (reg:SI 5 r5)
(subreg:SI (reg/v:DI 83) 1)) (insn_list 6 (nil))
(expr_list:REG_DEAD (reg/v:DI 83) (nil))) . */
if
(
i
>=
FIRST_PSEUDO_REGISTER
)
abort
();
}
else
/* Verify that the now-live register is wider than word_mode. */
verify_wide_reg
(
i
,
bb
->
head
,
bb
->
end
);
});
}
}
...
...
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