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
f3b4eae6
Commit
f3b4eae6
authored
Aug 01, 2019
by
Eric Botcazou
Committed by
Eric Botcazou
Aug 01, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cfgrtl.c (relink_block_chain): Add line returns in dump file.
From-SVN: r273988
parent
bf321336
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+4
-0
gcc/cfgrtl.c
+3
-3
No files found.
gcc/ChangeLog
View file @
f3b4eae6
2019-08-01 Eric Botcazou <ebotcazou@adacore.com>
* cfgrtl.c (relink_block_chain): Add line returns in dump file.
2019-08-01 Eric Botcazou <ebotcazou@adacore.com>
* cgraph.h (cgraph_edge::maybe_hot_p): Tweak comment.
* cgraph.c (cgraph_edge::maybe_hot_p): Likewise. Remove useless test.
* predict.c (maybe_hot_count_p): Likewise.
...
...
gcc/cfgrtl.c
View file @
f3b4eae6
...
...
@@ -3703,13 +3703,13 @@ relink_block_chain (bool stay_in_cfglayout_mode)
{
fprintf
(
dump_file
,
" %i "
,
index
);
if
(
get_bb_original
(
bb
))
fprintf
(
dump_file
,
"duplicate of %i
"
,
fprintf
(
dump_file
,
"duplicate of %i
\n
"
,
get_bb_original
(
bb
)
->
index
);
else
if
(
forwarder_block_p
(
bb
)
&&
!
LABEL_P
(
BB_HEAD
(
bb
)))
fprintf
(
dump_file
,
"compensation
"
);
fprintf
(
dump_file
,
"compensation
\n
"
);
else
fprintf
(
dump_file
,
"bb %i
"
,
bb
->
index
);
fprintf
(
dump_file
,
"bb %i
\n
"
,
bb
->
index
);
}
}
...
...
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