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
4c8826cd
Commit
4c8826cd
authored
Feb 26, 2003
by
Michael Matz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ra-colorize.c (merge_moves): Fix list handling.
From-SVN: r63468
parent
f6e91562
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
gcc/ra-colorize.c
+3
-2
No files found.
gcc/ra-colorize.c
View file @
4c8826cd
...
@@ -534,13 +534,14 @@ merge_moves (u, v)
...
@@ -534,13 +534,14 @@ merge_moves (u, v)
struct
web
*
u
,
*
v
;
struct
web
*
u
,
*
v
;
{
{
regset
seen
;
regset
seen
;
struct
move_list
*
ml
;
struct
move_list
*
ml
,
*
ml_next
;
seen
=
BITMAP_XMALLOC
();
seen
=
BITMAP_XMALLOC
();
for
(
ml
=
u
->
moves
;
ml
;
ml
=
ml
->
next
)
for
(
ml
=
u
->
moves
;
ml
;
ml
=
ml
->
next
)
bitmap_set_bit
(
seen
,
INSN_UID
(
ml
->
move
->
insn
));
bitmap_set_bit
(
seen
,
INSN_UID
(
ml
->
move
->
insn
));
for
(
ml
=
v
->
moves
;
ml
;
ml
=
ml
->
next
)
for
(
ml
=
v
->
moves
;
ml
;
ml
=
ml
_
next
)
{
{
ml_next
=
ml
->
next
;
if
(
!
bitmap_bit_p
(
seen
,
INSN_UID
(
ml
->
move
->
insn
)))
if
(
!
bitmap_bit_p
(
seen
,
INSN_UID
(
ml
->
move
->
insn
)))
{
{
ml
->
next
=
u
->
moves
;
ml
->
next
=
u
->
moves
;
...
...
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