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
04653686
Commit
04653686
authored
May 28, 2002
by
Richard Henderson
Committed by
Richard Henderson
May 28, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cfg.c (dump_flow_info): Print bb->index, not i, for block number.
From-SVN: r53961
parent
6ff14f32
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/cfg.c
+1
-1
No files found.
gcc/ChangeLog
View file @
04653686
2002-05-28 Richard Henderson <rth@redhat.com>
* cfg.c (dump_flow_info): Print bb->index, not i, for block number.
2002-05-28 Zack Weinberg <zack@codesourcery.com>
* tree.h: Forward-declare struct realvaluetype.
...
...
gcc/cfg.c
View file @
04653686
...
...
@@ -553,7 +553,7 @@ dump_flow_info (file)
gcov_type
lsum
;
fprintf
(
file
,
"
\n
Basic block %d: first insn %d, last %d, "
,
i
,
INSN_UID
(
bb
->
head
),
INSN_UID
(
bb
->
end
));
bb
->
index
,
INSN_UID
(
bb
->
head
),
INSN_UID
(
bb
->
end
));
fprintf
(
file
,
"prev %d, next %d, "
,
bb
->
prev_bb
->
index
,
bb
->
next_bb
->
index
);
fprintf
(
file
,
"loop_depth %d, count "
,
bb
->
loop_depth
);
...
...
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