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
ecd14de9
Commit
ecd14de9
authored
Apr 23, 2013
by
Xinliang David Li
Committed by
Xinliang David Li
Apr 23, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support slim switch for cfg graph dump
From-SVN: r198201
parent
2a30e7e2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+4
-0
gcc/cfghooks.c
+2
-1
No files found.
gcc/ChangeLog
View file @
ecd14de9
2013-04-23 Xinliang David Li <davidxl@google.com>
* cfghhooks.c (dump_bb_for_graph): Support 'slim' graph dump.
2013-04-23 Richard Biener <rguenther@suse.de>
PR middle-end/57036
...
...
gcc/cfghooks.c
View file @
ecd14de9
...
...
@@ -313,7 +313,8 @@ dump_bb_for_graph (pretty_printer *pp, basic_block bb)
pp_printf
(
pp
,
"COUNT:"
HOST_WIDEST_INT_PRINT_DEC
,
bb
->
count
);
pp_printf
(
pp
,
" FREQ:%i |"
,
bb
->
frequency
);
pp_write_text_to_stream
(
pp
);
cfg_hooks
->
dump_bb_for_graph
(
pp
,
bb
);
if
(
!
(
dump_flags
&
TDF_SLIM
))
cfg_hooks
->
dump_bb_for_graph
(
pp
,
bb
);
}
/* Dump the complete CFG to FILE. FLAGS are the TDF_* flags in dumpfile.h. */
...
...
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