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
90d0d8d3
Commit
90d0d8d3
authored
Jun 17, 2014
by
Xinliang David Li
Committed by
Xinliang David Li
Jun 17, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix dot dump bug
From-SVN: r211746
parent
72f4065c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletions
+7
-1
gcc/ChangeLog
+6
-0
gcc/passes.c
+0
-1
gcc/tree-pretty-print.c
+1
-0
No files found.
gcc/ChangeLog
View file @
90d0d8d3
2014-06-17 Xinliang David Li <davidxl@google.com>
* tree-pretty-print.c (dump_function_header): Print cgraph uid.
* passes.c (pass_init_dump_file): Do not set initialize
flag to false unconditionally.
2014-06-17 Richard Biener <rguenther@suse.de>
* genopinit.c (main): Use vec<>::qsort method.
...
...
gcc/passes.c
View file @
90d0d8d3
...
...
@@ -1895,7 +1895,6 @@ verify_curr_properties (function *fn, void *data)
bool
pass_init_dump_file
(
opt_pass
*
pass
)
{
pass
->
graph_dump_initialized
=
false
;
/* If a dump file name is present, open it if enabled. */
if
(
pass
->
static_pass_number
!=
-
1
)
{
...
...
gcc/tree-pretty-print.c
View file @
90d0d8d3
...
...
@@ -3465,6 +3465,7 @@ dump_function_header (FILE *dump_file, tree fdecl, int flags)
fprintf
(
dump_file
,
", decl_uid=%d"
,
DECL_UID
(
fdecl
));
if
(
node
)
{
fprintf
(
dump_file
,
", cgraph_uid=%d"
,
node
->
uid
);
fprintf
(
dump_file
,
", symbol_order=%d)%s
\n\n
"
,
node
->
order
,
node
->
frequency
==
NODE_FREQUENCY_HOT
?
" (hot)"
...
...
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