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
f8088d55
Commit
f8088d55
authored
May 28, 2002
by
Zdenek Dvorak
Committed by
Zdenek Dvorak
May 28, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cfgloop.c (flow_loops_cfg_dump): Use bb->index, not i.
From-SVN: r53967
parent
0b7ae565
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/cfgloop.c
+1
-1
No files found.
gcc/ChangeLog
View file @
f8088d55
2002-05-28 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* cfgloop.c (flow_loops_cfg_dump): Use bb->index, not i.
2002-05-28 Richard Henderson <rth@redhat.com>
* config/i386/i386.c (ix86_compute_frame_layout): Do not add
...
...
gcc/cfgloop.c
View file @
f8088d55
...
...
@@ -62,7 +62,7 @@ flow_loops_cfg_dump (loops, file)
fprintf
(
file
,
";; %d succs { "
,
bb
->
index
);
for
(
succ
=
bb
->
succ
;
succ
;
succ
=
succ
->
succ_next
)
fprintf
(
file
,
"%d "
,
succ
->
dest
->
index
);
flow_nodes_print
(
"} dom"
,
loops
->
cfg
.
dom
[
i
],
file
);
flow_nodes_print
(
"} dom"
,
loops
->
cfg
.
dom
[
bb
->
index
],
file
);
}
/* Dump the DFS node order. */
...
...
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