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
fbfb3b09
Commit
fbfb3b09
authored
May 17, 2002
by
Zdenek Dvorak
Committed by
Richard Henderson
May 16, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* flow.c (calculate_global_regs_live): Queue blocks in program order.
From-SVN: r53533
parent
b4b0fb02
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
9 deletions
+11
-9
gcc/ChangeLog
+4
-0
gcc/flow.c
+7
-9
No files found.
gcc/ChangeLog
View file @
fbfb3b09
2002-05-16 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* flow.c (calculate_global_regs_live): Queue blocks in program order.
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* doc/install.texi (Configuration): Document PWDCMD.
* doc/install.texi (Configuration): Document PWDCMD.
...
...
gcc/flow.c
View file @
fbfb3b09
...
@@ -1113,16 +1113,14 @@ calculate_global_regs_live (blocks_in, blocks_out, flags)
...
@@ -1113,16 +1113,14 @@ calculate_global_regs_live (blocks_in, blocks_out, flags)
useful work. We use AUX non-null to flag that the block is queued. */
useful work. We use AUX non-null to flag that the block is queued. */
if
(
blocks_in
)
if
(
blocks_in
)
{
{
/* Clear out the garbage that might be hanging out in bb->aux. */
FOR_ALL_BB
(
bb
)
FOR_ALL_BB
(
bb
)
bb
->
aux
=
NULL
;
if
(
TEST_BIT
(
blocks_in
,
bb
->
sindex
))
{
EXECUTE_IF_SET_IN_SBITMAP
(
blocks_in
,
0
,
i
,
*--
qhead
=
bb
;
{
bb
->
aux
=
bb
;
bb
=
BASIC_BLOCK
(
i
);
}
*--
qhead
=
bb
;
else
bb
->
aux
=
bb
;
bb
->
aux
=
NULL
;
});
}
}
else
else
{
{
...
...
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