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
1344f8d5
Commit
1344f8d5
authored
Nov 15, 1999
by
Richard Henderson
Committed by
Richard Henderson
Nov 15, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* flow.c (calculate_global_regs_live): Zero bb->aux to begin.
From-SVN: r30546
parent
d4b15af9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
gcc/ChangeLog
+2
-0
gcc/flow.c
+4
-0
No files found.
gcc/ChangeLog
View file @
1344f8d5
...
...
@@ -3,6 +3,8 @@ Mon Nov 15 20:46:45 1999 Richard Henderson <rth@cygnus.com>
*
alpha
.
c
(
alpha_build_va_list
)
:
Use
make_lang_type
and
initialize
TYPE_NAME
for
the
va_list
record
.
*
flow
.
c
(
calculate_global_regs_live
)
:
Zero
bb
->
aux
to
begin
.
Tue
Nov
16
14
:
37
:
52
1999
Geoffrey
Keating
<
geoffk
@cygnus
.
com
>
*
config
/
rs6000
/
rs6000
.
c
(
first_reg_to_save
)
:
Save
...
...
gcc/flow.c
View file @
1344f8d5
...
...
@@ -3012,6 +3012,10 @@ calculate_global_regs_live (blocks_in, blocks_out, flags)
qtail
=
queue
;
qhead
=
qend
=
queue
+
n_basic_blocks
+
2
;
/* Clear out the garbage that might be hanging out in bb->aux. */
for
(
i
=
n_basic_blocks
-
1
;
i
>=
0
;
--
i
)
BASIC_BLOCK
(
i
)
->
aux
=
NULL
;
/* Queue the blocks set in the initial mask. Do this in reverse block
number order so that we are more likely for the first round to do
useful work. We use AUX non-null to flag that the block is queued. */
...
...
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